Home
last modified time | relevance | path

Searched refs:svg (Results 1 – 25 of 1699) sorted by relevance

12345678910>>...68

/plugin/diagrams/
H A Dhelper.php19 $svg = file_get_contents($file, false, null, 0, 500);
20 return $this->isDiagram($svg);
28 * @param string $svg The raw SVG data (first 500 bytes are enough)
31 public function isDiagram($svg) argument
33 $svg = substr($svg, 0, 500); // makes checking a tiny bit faster
34 $svg = preg_replace('/<\?xml.*?>/', '', $svg);
35 $svg = preg_replace('/<!--.*?-->/', '', $svg);
[all...]
/plugin/translation/lang/
H A Dflags.txt16 be https://flagicons.lipis.dev/flags/4x3/by.svg
17 bg https://flagicons.lipis.dev/flags/4x3/bg.svg
30 cs https://flagicons.lipis.dev/flags/4x3/cz.svg
34 da https://flagicons.lipis.dev/flags/4x3/dk.svg
35 de https://flagicons.lipis.dev/flags/4x3/de.svg
39 el https://flagicons.lipis.dev/flags/4x3/gr.svg
40 en https://flagicons.lipis.dev/flags/4x3/gb.svg
41 eo https://upload.wikimedia.org/wikipedia/commons/f/f5/Flag_of_Esperanto.svg
42 es https://flagicons.lipis.dev/flags/4x3/es.svg
43 et https://flagicons.lipis.dev/flags/4x3/ee.svg
[all...]
/plugin/diagrams/script/
H A DDiagramsEditor.js4 * @param {string} svg The SVG data to save
37 #svg = ''; field in DiagramsEditor
57 this.#saveCallback = (svg) => this.#saveMediaFile(mediaid, svg);
66 this.#svg = await response.text();
80 this.#saveCallback = (svg) => this.#saveEmbed(pageid, position, length, svg);
94 this.#svg = await response.text();
107 * @param {string} svg The SVG raw data to edit, empty for new file
110 editMemory(svg, callbac argument
123 saveMediaFile(mediaid, svg) global() argument
146 saveEmbed(pageid, position, length, svg) global() argument
172 savePngCache(svg, png) global() argument
[all...]
/plugin/rigrr/lib/svg-pan-zoom/
H A Dsvg-pan-zoom.js8 instance.svg.appendChild(defs)
201 this.init(svg, options)
221 this.svg = svg
840 if (svg === null) {
845 if (instancesStore[i].svg === svg) {
852 svg: svg
929 var svgChildren = svg.childNodes || svg.children;
975 return function(svg) {
1106 , svg;
1128 svg = element;
[all …]
/plugin/admnote/
H A Dstyle.css11svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 5h16…
12svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 12h…
13svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.5 2…
14svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 13v-…
15svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2c5…
16svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 9h-…
17svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.71 …
18svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.07 …
19 …age/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14…
20svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6…
[all …]
/plugin/icon/
H A DSVG.php19 protected $svg; variable in dokuwiki\\plugin\\icon\\SVG
41 $svg = $http->get($this->url);
43 $svg = $this->processSVG($svg);
44 io_saveFile($cache, $svg);
160 $svg = $dom->getElementsByTagName('svg')->item(0);
163 if (!$svg->hasAttribute('viewBox')) {
164 $w = $svg->getAttribute('width');
165 $h = $svg->getAttribute('height');
167 $svg->setAttribute('viewBox', "0 0 $w $h");
172 $this->removeAttributes($svg, ['viewBox']);
[all …]
H A Daction.php39 $svg = new SVG($conf['source'], $icon);
40 $svg->setColor($conf['color']);
41 $svg->setWidth($conf['width']);
42 $svg->setHeight($conf['height']);
48 $d['file'] = $svg->getFile();
/plugin/combo/resources/snippet/js/
H A Dlozad-svg-injection.js3 const svgObserver = lozad('.lazy-svg-injection-cs', {
12 // SVGInjector takes over and load the svg element
15 each: function (svg) { argument
17 // If any error, svg is a string with the error
18 // Example: `Unable to load SVG file: http://doku/_media/ui/preserveaspectratio.svg`
19 if (typeof svg === 'object') {
21 svg.style.cssText = el.style.cssText;
26 dataSet.class.split(" ").forEach(e => svg.classList.add(e));
31 if(svg.style !== 'undefined' ) {
33 svg
[all...]
/plugin/diagrams/parser/
H A DDiagramsNode.php46 $svg = $this->data['attrs']['url'];
47 if (substr($svg, 0, 26) !== 'data:image/svg+xml;base64,') {
48 throw new \Exception('bad data uri "' . substr($svg, 0, 26) . '"');
50 $svg = base64_decode(substr($svg, 26));
51 return $openingTag . $svg . "</diagram>";
/plugin/diagrams/action/
H A Dembed.php64 $svg = rawWiki($id);
65 $svg = substr($svg, $pos, $len);
66 if (!$this->helper->isDiagram($svg)) {
72 header('Content-Type: image/svg+xml');
73 echo $svg;
90 $svg = $INPUT->str('svg');
110 if (!$this->helper->isDiagram($svg)) {
116 $new = substr($original, 0, $pos) . $svg
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DProgress.php9 $svg = '';
29 $svg = '<svg width="' . $w . 'px" height="' . $h . 'px" viewBox="0 0 ' . $w . ' ' . $h . '"><g>
54 $svg .= '<rect x="0" y="0" rx="' . ($h * $border_radius) . 'px" ry="' . ($h * $border_radius) . 'px" width="' . $barw . '" height="' . $h . '" fill="' . $barcol . '" stroke="none" />';
59 $svg .= '<rect x="0" y="0" rx="' . ($h * $border_radius) . 'px" ry="' . ($h * $border_radius) . 'px" width="' . $w . '" height="' . $h . '" fill="none" stroke="#888888" stroke-width="0.5px" />';
61 // $svg .= '<rect x="0" y="0" rx="'.($h*$border_radius).'px" ry="'.($h*$border_radius).'px" width="'.$barw.'" height="'.$h.'" fill="none" stroke="#888888" stroke-width="0.5px" />';
65 $svg .= '</g></svg>';
69 return $svg;
H A DMeter.php226 $svg = $this->makeSVG($type, $value, $max, $min, $optimum, $low, $high);
228 $srcpath = $this->cache->write('/_tempSVG' . uniqid(random_int(1, 100000), true) . '_' . strtolower($tag) . '.svg', $svg);
314 $svg = '<?xml version="1.0" encoding="UTF-8"?>
315 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
316 <svg width="' . $w . 'px" height="' . $h . 'px" viewBox="0 0 ' . $w . ' ' . $h . '" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" ><g>
329 $svg .= '<rect x="0" y="0" width="' . $w . '" height="' . $h . '" fill="#f4f4f4" stroke="none" />';
336 $svg .= '<rect x="' . $barx . '" y="0" width="' . $barw . '" height="' . $h . '" fill="url(#GrGRAY)" stroke="#888888" stroke-width="0.5px" />';
344 $svg
[all...]
/plugin/svg/
H A Dsyntax.php.save17 require_once(DOKU_PLUGIN.'svg/header.php');
34 …s.org/dokuwiki/lib/exe/fetch.php?id=project%3Adokuwiki-svg&cache=cache&media=project:dokuwiki-svg.…
116 $filename = md5( getID() ) . $syntax_plugin_svg_pcount . '.svg';
176 . 'data/svg/media/'
191 . 'data/svg/media/'
204 . 'data/svg/media/'
208 . 'type="image/svg+xml" '
214 . 'data/svg/media/'
218 . 'type="image/svg+xml" '
223 . 'data/svg/media/'
[all …]
/plugin/sequencediagram/bower_components/snap.svg/
H A DREADME.md1 [Snap.svg](http://snapsvg.io)
9 * [Bower](http://bower.io/) - `bower install snap.svg`
10 * Manual Minified - https://github.com/adobe-webplatform/Snap.svg/raw/master/dist/snap.svg-min.js
11 …l Unminified - https://raw.githubusercontent.com/adobe-webplatform/Snap.svg/master/dist/snap.svg.js
16 * [About Snap.svg](http://snapsvg.io/about/)
22 In your HTML file, load simply by: `<script src="snap.svg-min.js"></script>`
27 Snap.svg uses [Grunt](http://gruntjs.com/) to build.
29 * Open the terminal from the Snap.svg directory:
31 cd Snap.svg
43 _*Snap.svg uses Grunt 0.4.0. You might want to [read](http://gruntjs.com/getting-started) more on t…
/plugin/structpublish/
H A Dstyle.less11 .icon svg {
19 .icon svg {
25 .icon svg {
31 .icon svg {
40 svg {
49 span.icon svg {
/plugin/menuext/
H A DMenuExtItem.php30 if (isset($data['svg'])) $this->svg = $data['svg'];
48 if (file_exists($this->svg)) return $this->svg;
49 $file = mediaFN($this->svg);
53 $file = getCacheName($this->svg, '.svg');
60 return DOKU_INC . 'lib/images/menu/00-default_checkbox-blank-circle-outline.svg';
/plugin/sequencediagram/bower_components/snap.svg/doc/fonts/
H A Dstylesheet.css8 url('sourcesanspro-light-webfont.svg#source_sans_prolight') format('svg');
23 url('sourcesanspro-regular-webfont.svg#source_sans_proregular') format('svg');
38 url('sourcesanspro-semibold-webfont.svg#source_sans_prosemibold') format('svg');
53 url('sourcecodepro-regular-webfont.svg#source_code_proregular') format('svg');
/plugin/webdav/vendor/sabre/dav/
H A DREADME.md19 | master | [![Build Status](https://travis-ci.org/fruux/sabre-dav.svg?branch=master)](https:/…
20 | 3.1 | [![Build Status](https://travis-ci.org/fruux/sabre-dav.svg?branch=3.0)](https://tr…
21 | 3.0 | [![Build Status](https://travis-ci.org/fruux/sabre-dav.svg?branch=3.0)](https://tr…
22 | 2.1 | [![Build Status](https://travis-ci.org/fruux/sabre-dav.svg?branch=2.1)](https://tr…
23 | 2.0 | [![Build Status](https://travis-ci.org/fruux/sabre-dav.svg?branch=2.0)](https://tr…
24 | 1.8 | [![Build Status](https://travis-ci.org/fruux/sabre-dav.svg?branch=1.8)](https://tr…
25 | 1.7 | [![Build Status](https://travis-ci.org/fruux/sabre-dav.svg?branch=1.7)](https://tr…
26 | 1.6 | [![Build Status](https://travis-ci.org/fruux/sabre-dav.svg?branch=1.6)](https://tr…
/plugin/twistienav/
H A Dstyle.less22 .dokuwiki .breadcrumbs span.twistienav_twistie.svg:before {
23 content: url(images/circle-right.svg);
34 .dokuwiki .breadcrumbs span.twistienav_twistie.twistienav_down.svg:before {
35 content: url(images/cancel-circle.svg) !important;
40 .dokuwiki .breadcrumbs span.twistienav_map.svg:before,
41 .dokuwiki a.twistienav_extratwistie.svg:before {
42 content: url(images/map.svg);
63 .dokuwiki .twistienav_map.twistienav_down.svg:before,
64 .dokuwiki a.twistienav_extratwistie.twistienav_down.svg:before {
65 content: url(images/map-full.svg) !important;
/plugin/twistienav4bootstrap3/
H A Dstyle.less22 #dokuwiki__pageheader #dw__breadcrumbs span.twistienav_twistie.svg:before {
23 content: url(images/circle-right.svg);
34 #dokuwiki__pageheader #dw__breadcrumbs span.twistienav_twistie.twistienav_down.svg:before {
35 content: url(images/cancel-circle.svg) !important;
40 #dokuwiki__pageheader #dw__breadcrumbs span.twistienav_map.svg:before,
41 #dokuwiki__pageheader a.twistienav_extratwistie.svg:before {
42 content: url(images/map.svg);
63 #dokuwiki__pageheader .twistienav_map.twistienav_down.svg:before,
64 #dokuwiki__pageheader a.twistienav_extratwistie.twistienav_down.svg:before {
65 content: url(images/map-full.svg) !important;
/plugin/achart/assets/
H A Dapexcharts.css428 .apexcharts-svg {
456 .apexcharts-zoom-icon svg,
457 .apexcharts-zoomin-icon svg,
458 .apexcharts-zoomout-icon svg,
459 .apexcharts-reset-icon svg,
460 .apexcharts-menu-icon svg {
464 .apexcharts-selection-icon svg {
473 .apexcharts-theme-dark .apexcharts-pan-icon svg,
526 .apexcharts-pan-icon svg {
532 .apexcharts-pan-icon.apexcharts-selected svg {
[all …]
/plugin/combo/resources/theme/default/pages/partials/
H A Dpage-side-md-collapsable.hbs5 <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18"
11 </svg>
15 <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18"
20 </svg>
/plugin/yuriigantt/3rd/fontawesome/
H A Dcompress-solid.svg1svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="compress" class="svg-inline-…
/plugin/codebuttonmod2/image/
H A Dcopy-button.svg1svg aria-hidden="true" data-prefix="far" data-icon="copy" class="svg-inline--fa fa-copy fa-w-14" r…
/plugin/combo/resources/images/
H A Derror-bad-format.svg1 <svg class="bd-placeholder-img" width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"
4 <title>Bad svg file: check the log to see the error</title>
13 </svg>

12345678910>>...68