Searched +full:style -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 25 of 361) sorted by relevance
12345678910>>...15
| /dokuwiki/inc/Subscriptions/ |
| H A D | SubscriberRegexBuilder.php | 13 * @param string|array $style 21 public function buildRegex($user = null, $style = null, $data = null) argument 25 $style = (array)$style; 30 $style = array_filter(array_map(trim(...), $style)); 39 $style = array_map(preg_quote_cb(...), $style); 44 $style = implode('|', $style); 48 if ($user . $style . $data === '') { 58 if ($style === '') { 59 $style = '\S+'; 68 return "/^($user)(?:\\s+($style))$sopt(?:\\s+($data))$dopt$/";
|
| H A D | SubscriberManager.php | 27 * @throws Exception when user or style is empty 32 * @param string $style 37 public function add($id, $user, $style, $data = '') argument 47 $style = trim($style); 53 if (!$style) { 54 throw new Exception('no subscription style given'); 60 $line = "$user $style $data\n"; 75 * @param string|array $style 81 public function remove($id, $user = null, $style = null, $data = null) argument 93 $re = $regexBuilder->buildRegex($user, $style, $data); [all …]
|
| /dokuwiki/lib/images/interwiki/ |
| H A D | doku.svg | 1 …style="stop-color:#3a9030;stop-opacity:.83673471" offset="0"/><stop style="stop-color:#3d9c32;stop…
|
| /dokuwiki/inc/Action/ |
| H A D | Subscribe.php | 69 foreach (['target', 'style', 'action'] as $param) { 82 $style = $params['style']; 88 $ok = $subManager->remove($target, $INPUT->server->str('REMOTE_USER'), $style); 90 $ok = $subManager->add($target, $INPUT->server->str('REMOTE_USER'), $style); 122 * @param array &$params the parameters: target, style and action 138 // Allow “list” subscribe style since the target is a namespace. 141 $style = valid_input_set( 142 'style', 145 'invalid subscription style given' 175 // subscription_set deletes a subscription if style = null. [all …]
|
| /dokuwiki/lib/tpl/ |
| H A D | index.php | 4 * This file reads the style.ini of the used template and displays the 7 * specified in the style.ini 23 <style> 45 </style> 49 // get merged style.ini 55 echo "<caption>" . hsc($conf['template']) . "'s style.ini</caption>"; 62 echo '<div class="color" style="background-color:' . $val . ';"> </div>'; 69 …echo "<p>Non-existent or invalid template or style.ini: <strong>" . hsc($conf['template']) . "</st…
|
| /dokuwiki/lib/plugins/extension/images/ |
| H A D | coffee.svg | 1 …style="fill:#ff8c78"/><path d="M399.797 299.29H112.203l18.108 153.921h251.378z" style="fill:#f6f6f…
|
| H A D | bug.svg | 1 …style="fill:#2ca9bc;stroke-width:2"/><path d="M16 18a5 5 0 0 1 2.72 3v0" style="fill:none;stroke:#…
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/ |
| H A D | KMLCreator.php | 32 $feed .= "<Style id=\"defaultIcon\"> 36 </Style> 37 <Style id=\"hoverIcon\">". 42 </Style> 54 $style = "#defaultStyle"; 56 $style = "root://styleMaps#default?iconId=0x307"; 79 <styleUrl>$style</styleUrl> 80 <Style> 82 </Style>";
|
| /dokuwiki/vendor/geshi/geshi/src/geshi/ |
| H A D | pcre.php | 126 7 => 'color: #cc9900; font-weight: bold; font-style: italic;', 127 8 => 'color: #cc9900; font-style: italic;', 128 9 => 'color: #669933; font-style: italic;', 129 10 => 'color: #339933; font-style: italic;', 130 11 => 'color: #339966; font-style: italic;', 131 12 => 'color: #339999; font-style: italic;', 132 13 => 'color: #663399; font-style: italic;', 133 14 => 'color: #999933; font-style: italic;', 134 15 => 'color: #993399; font-style: italic;', 135 16 => 'color: #333399; font-style: italic;', [all …]
|
| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | print.css | 38 list-style: disc outside; 41 list-style: decimal outside; 44 list-style-type: lower-alpha; 47 list-style-type: upper-roman; 50 list-style-type: upper-alpha; 53 list-style-type: lower-roman;
|
| H A D | _toc.css | 47 list-style: none; 83 list-style-image: url(../../images/bullet.png); 86 list-style-image: url(../../images/open.png); 89 list-style-image: url(../../images/closed.png); 92 list-style-image: url(../../images/closed-rtl.png);
|
| H A D | basic.less | 151 ul { list-style: square outside; } 152 ol { list-style: decimal outside; } 153 ol ol { list-style-type: lower-alpha; } 154 ol ol ol { list-style-type: upper-roman; } 155 ol ol ol ol { list-style-type: upper-alpha; } 156 ol ol ol ol ol { list-style-type: lower-roman; } 220 font-style: italic; 255 font-style: normal; 259 font-style: italic; 325 /* for all of the form styles, style.ini colours are not used on purpose (except for fieldset borde… [all …]
|
| /dokuwiki/lib/images/fileicons/ |
| H A D | index.php | 6 <style> 26 </style> 48 <br style="clear: left" />
|
| /dokuwiki/vendor/geshi/geshi/src/ |
| H A D | geshi.php | 100 // Link style constants 167 define('GESHI_NUMBER_INT_CSTYLE', 2); //Default C-Style \d+[lL]? 330 * The style of the header block 336 * The style of the footer block 410 * The overall style for this code block 416 * The style for the actual code 446 * Style for line numbers when GESHI_HEADER_PRE_TABLE is chosen 834 * when this object is parsed. The style should be a 837 * @param string $style The overall style for the outputted code block 841 public function set_overall_style($style, $preserve_defaults = false) { argument [all …]
|
| /dokuwiki/lib/images/fileicons/svg/ |
| H A D | rtf.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#6b533b}</style><pat…
|
| H A D | txt.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#6b533b}</style><pat…
|
| H A D | index.php | 6 <style> 11 </style>
|
| H A D | png.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#5b2d8d}</style><pat…
|
| H A D | gif.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#5b2d8d}</style><pat…
|
| H A D | jpg.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#5b2d8d}</style><pat…
|
| H A D | jpeg.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#5b2d8d}</style><pat…
|
| H A D | xls.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#30723f}</style><pat…
|
| H A D | docx.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#2372ba}</style><pat…
|
| H A D | doc.svg | 1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#2372ba}</style><pat…
|
| /dokuwiki/inc/ |
| H A D | StyleUtils.php | 8 * Reads and applies the template's style.ini settings 18 /** @var array default replacements to be merged with custom style configs */ 35 * @param bool $reinit whether static style conf should be reinitialized 49 * Load style ini contents 51 * Loads and merges style.ini files from template and config and prepares 103 // validate and include style files 127 * Checks if configured style files exist and, if necessary, adjusts file extensions in config 158 * Style resources are relative to the template directory for the main (default) styles
|
12345678910>>...15