Home
last modified time | relevance | path

Searched refs:acronyms (Results 1 – 25 of 30) sorted by relevance

12

/plugin/nodetailsxhtml/syntax/
Dacronym.php19 private $acronyms = array(); variable in syntax_plugin_nodetailsxhtml_acronym
39 $this->acronyms = getAcronyms();
44 $acronyms = array();
45 foreach( $this->acronyms as $key => $value ) {
46 if ( !strstr($key, '_') ) { unset($this->acronyms[$key]); continue; }
47 $acronyms[] = str_replace('_', ' ', $key);
50 if(!count($acronyms)) return;
53 $acronyms = array_map('Doku_Lexer_Escape',$acronyms);
54 $this->pattern = '(?<=^|'.$bound.')(?:'.join('|',$acronyms).')(?='.$bound.')';
58 if(!count($this->acronyms)) return;
/plugin/confmanager/action/
Dregisterconfig.php49 $acronyms = new ConfigManagerTwoLineCascadeConfig('acronyms');
50 $acronyms->setName($this->getLang('Acronyms'));
51 $acronyms->setDescription($this->getDescription('acronyms'));
52 $event->data[] = $acronyms;
/plugin/advanced/lang/en/config/
Dacronyms.txt3acronyms (terminology) automatically. You can hover your mouse on an abbreviation to see a short e…
5 === Example of acronyms.conf ===
/plugin/codemirror/
Daction.php37 $acronyms = array_keys(getAcronyms());
38 usort($acronyms, array($this,'compare'));
41 'acronyms' => $acronyms,
/plugin/acronymedit/
DREADME.md5 …is to provide online editor for dokuwiki acronyms. Basicly it is very simple viewer and editor for…
/plugin/confmanager/lang/en/
Dacronyms.txt1acronyms (terminology) automatically. If your browser supports the <acronym> tag, you can hover yo…
/plugin/advanced/lang/en/
Dconfig.txt12 | ''acronyms.conf'' | ''acronyms.local.conf'' | [[doku>abbreviat…
/plugin/acronym4glossary/
DREADME1 Dokuwiki Plugin that uses the acronyms to let you easily create a glossary
Dplugin.info.txt6 desc This plugin uses the acronyms to build a glossary
/plugin/siteexport/renderer/
Dpdf.php346 $this->acronymsExchanged = $this->acronyms;
347 $this->acronyms = array();
350 $this->acronyms[str_replace('_', ' ', $key)] = $value;
/plugin/advanced/lang/fr/config/
Dacronyms.txt5 === Exemple du fichier acronyms.conf ===
/plugin/combo/ComboStrap/
H A DMarkupDynamicRender.php52 $this->renderer->acronyms = getAcronyms();
/plugin/nodetailsxhtml/
Drenderer.php341 $this->acronymsExchanged = $this->acronyms;
342 $this->acronyms = array();
345 $this->acronyms[str_replace('_', ' ', $key)] = $value;
/plugin/flowcharts/
Dsyntax.php139 $Renderer->acronyms = getAcronyms();
/plugin/aichat/
Drenderer.php326 if (array_key_exists($acronym, $this->acronyms)) {
327 $title = $this->acronyms[$acronym];
/plugin/text/
Drenderer.php378 if ( array_key_exists($acronym, $this->acronyms) ) {
379 $title = $this->acronyms[$acronym];
/plugin/epub/scripts/
Debook.php50 $Renderer->acronyms = array();
/plugin/nsexport/packer/ziphtml/
Dpacker.php59 $this->Renderer->acronyms = getAcronyms();
/plugin/dokutexit/
Dlatex.php47 var $acronyms = array(); variable in Doku_Renderer_latex
357 if (!isset($this->_acronyms_used[$this->acronyms[$acronym]])) {
359 $this->putent($this->acronyms[$acronym], 1);
361 $this->_acronyms_used[$this->acronyms[$acronym]] = $this->_footnote_index;
364 $this->put($this->_acronyms_used[$this->acronyms[$acronym]]);
Dtexitrender.php270 $Renderer->acronyms = getAcronyms();
/plugin/twcheckliste/
Drenderer.php.old148 * No acronyms in a presentation
/plugin/webcode/syntax/
Dbasis.php66 $Renderer->acronyms = getAcronyms();
/plugin/interwikiformatting/
DREADME.md12 …re all words except articles, conjunctions, prepositions, and uppercase acronyms start with a capi…
/plugin/fckg/action/
Dedit.php2693 $Renderer->acronyms = array();
/plugin/xml/
Drenderer.php320 $this->doc .= '<acronym data="' . $this->_xmlEntities($this->acronyms[$acronym]) . '">';

12