Home
last modified time | relevance | path

Searched refs:replacements (Results 1 – 11 of 11) sorted by path

/dokuwiki/data/pages/wiki/
H A Dsyntax.txt228 The text to image conversion is mainly done for smileys. And the text to HTML conversion is used for typography replacements, but can be configured to use other HTML as well.
/dokuwiki/inc/
H A DMailer.class.php33 protected $replacements = ['text' => [], 'html' => []];
38 * Initializes the boundary strings, part counters and token replacements
188 * Set the text and HTML body and apply replacements
190 * This function applies a whole bunch of default replacements in addition
193 * If you pass the HTML part or HTML replacements yourself you have to make
197 * @param array $textrep replacements to apply on the text part
198 * @param array $htmlrep replacements to apply on the HTML part, null to use $textrep (urls wrapped in <a> tags)
226 // copy over all replacements missing for HTML (autolink URLs)
243 // add default token replacements
244 $trep = array_merge($this->replacements['tex
30 protected $replacements = array('text'=> array(), 'html' => array()); global() variable in Mailer
[all...]
H A DManifest.php35 $replacements = $styleIni['replacements'];
38 $manifest['background_color'] = $replacements['__background__'];
42 $manifest['theme_color'] = empty($replacements['__theme_color__'])
43 ? $replacements['__background_alt__']
44 : $replacements['__theme_color__'];
H A DStyleUtils.php18 /** @var array default replacements to be merged with custom style configs */
57 * @return array with keys 'stylesheets' and 'replacements'
71 $replacements = $this->defaultReplacements;
84 $combined['replacements'] = [];
112 if (isset($config['replacements']) && is_array($config['replacements'])) {
113 $replacements = array_replace(
114 $replacements,
115 $this->cssFixreplacementurls($config['replacements'], $webbase)
117 $combined['replacements']
183 cssFixreplacementurls($replacements, $location) global() argument
[all...]
H A Dtemplate.php278 $replacements = $styleIni['replacements'];
279 if (!empty($replacements['__theme_color__'])) {
282 'content' => $replacements['__theme_color__']
/dokuwiki/lib/exe/
H A Dcss.php179 // apply style replacements
180 $css = css_applystyle($css, $styleini['replacements']);
262 * Does placeholder replacements in the style according to
269 * @param array $replacements array(placeholder => value)
274 function css_applystyle($css, $replacements)
276 // we convert ini replacements to LESS variable names
279 foreach ((array)$replacements as $key => $value) {
284 $replacements[$key] = $lkey;
287 // we now replace all old ini replacements with LESS variables
288 $css = strtr($css, $replacements);
261 css_applystyle($css, $replacements) global() argument
466 public function replacements($match) { global() function in DokuCssFile
[all...]
/dokuwiki/lib/plugins/styling/
H A DREADME3 Allows to edit style.ini replacements
H A Dadmin.php69 $replacements = $styleini['replacements'];
77 if (empty($replacements)) {
86 foreach ($replacements as $key => $value) {
172 * deletes the local style.ini replacements
181 * save the local style.ini replacements
198 $ini = "[replacements]\n";
219 $old = preg_replace('/\[replacements\]\n.*?(\n\[.*]|$)/s', '\\1', $old);
H A Dplugin.info.txt6 desc Allows to edit style.ini replacements
/dokuwiki/lib/tpl/dokuwiki/
H A Dstyle.ini8 ; (i.e. [stylesheets] or [replacements]) into that file as well.
51 [replacements] section
57 __text__replacements global() argument
58 __background__replacements global() argument
60 __text_alt__replacements global() argument
61 __background_alt__replacements global() argument
63 __text_neu__replacements global() argument
64 __background_neu__replacements global() argument
66 __border__replacements global() argument
69 __highlight__replacements global() argument
72 __link__replacements global() argument
76 __background_site__replacements global() argument
79 __existing__replacements global() argument
80 __missing__replacements global() argument
83 __site_width__replacements global() argument
84 __sidebar_width__replacements global() argument
86 __tablet_width__replacements global() argument
87 __phone_width__replacements global() argument
89 __theme_color__replacements global() argument
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php3200 // BenBE: Fix to reduce the number of replacements to be done
3232 * Handles replacements of keywords to include markup and links if requested
4206 $keywords = $replacements = array();
4210 $replacements[] = $replacements[] = number_format($time = $this->get_time(), 3);
4214 $replacements[] = $replacements[] = $this->language_data['LANG_NAME'];
4218 $replacements[] = $replacements[] = GESHI_VERSION;
4232 $replacements[]
[all...]