Home
last modified time | relevance | path

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

12345678910>>...76

/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);
36 $svg = preg_replace('/<!DOCTYPE.*?>/', '', $svg);
37 $svg = ltrim($svg);
39 if (empty($svg) || substr($svg, 0, 4) !== '<svg') return false;
[all …]
/plugin/translation/lang/
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.js37 #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();
110 editMemory(svg, callback) { argument
111 this.#svg = svg;
123 async #saveMediaFile(mediaid, svg) { argument
129 body: svg,
146 async #saveEmbed(pageid, position, length, svg) { argument
[all …]
/plugin/rigrr/lib/svg-pan-zoom/
Dsvg-pan-zoom.js5 var defs = instance.svg.querySelector('defs')
8 instance.svg.appendChild(defs)
29 instance.svg.appendChild(zoomGroup)
200 var SvgPanZoom = function(svg, options) {
201 this.init(svg, options)
220 SvgPanZoom.prototype.init = function(svg, options) {
221 this.svg = svg
230 var dimensions = SvgUtils.getSvgDimensions(svg)
235 this.viewport = SvgUtils.getOrCreateViewport(svg)
249 SvgUtils.setupSvgAttributes(this.svg)
[all …]
/plugin/admnote/
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/asciidocjs/node_modules/function-bind/
DREADME.md4 [![build status][travis-svg]][travis-url]
5 [![NPM version][npm-badge-svg]][npm-url]
8 [![Dependency status][deps-svg]][deps-url]
9 [![Dev Dependency status][dev-deps-svg]][dev-deps-url]
35 [travis-svg]: https://travis-ci.org/Raynos/function-bind.svg
37 [npm-badge-svg]: https://badge.fury.io/js/function-bind.svg
43 [deps-svg]: https://david-dm.org/Raynos/function-bind.svg
45 [dev-deps-svg]: https://david-dm.org/Raynos/function-bind/dev-status.svg
/plugin/icon/
DSVG.php19 protected $svg; variable in dokuwiki\\plugin\\icon\\SVG
41 $svg = $http->get($this->url);
42 if (!$svg) throw new \RuntimeException('Failed to download SVG: ' . $http->error);
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");
[all …]
/plugin/combo/resources/snippet/js/
H A Dlozad-svg-injection.js15 each: function (svg) { argument
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.style.removeProperty("display");
35 svg.style.setProperty("display", displayValue, displayPriority);
/plugin/imagemapping/
DImageMappingEditor.js19 svg = null; field in ImageMappingEditor
146 this.svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
150 this.svg.setAttribute('viewBox', '0 0 ' + img.width + ' ' + img.height);
159 this.svg.appendChild(image);
165 this.svg.appendChild(group);
181 this.$dialog.append(this.svg);
216 Array.from(this.svg.querySelectorAll('circle.handle')).forEach((h) => h.remove());
236 this.svg.appendChild(handle);
244 const handles = Array.from(this.svg.querySelectorAll('circle.handle'));
267 const group = this.svg.querySelector('g');
[all …]
/plugin/diagrams/action/
H A Dembed.php64 $svg = rawWiki($id);
65 $svg = substr($svg, $pos, $len);
66 if (!$this->helper->isDiagram($svg)) {
73 echo $svg;
90 $svg = $INPUT->str('svg');
110 if (!$this->helper->isDiagram($svg)) {
116 $new = substr($original, 0, $pos) . $svg . substr($original, $pos + $len);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
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) . 'p…
59 …$svg .= '<rect x="0" y="0" rx="' . ($h * $border_radius) . 'px" ry="' . ($h * $border_radius) . 'p…
65 $svg .= '</g></svg>';
69 return $svg;
DMeter.php226 $svg = $this->makeSVG($type, $value, $max, $min, $optimum, $low, $high);
228 …->write('/_tempSVG' . uniqid(random_int(1, 100000), true) . '_' . strtolower($tag) . '.svg', $svg);
314 $svg = '<?xml version="1.0" encoding="UTF-8"?>
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…
344 …$svg .= '<rect x="' . $barx . '" y="0" rx="' . ($h * $border_radius) . 'px" ry="' . ($h * $border_…
360 …$svg .= '<ellipse fill="' . $col . '" stroke="#000000" stroke-width="0.5px" cx="' . $cx . '" cy="'…
364 …$svg .= '<rect x="0" y="0" width="' . $w . '" height="' . $h . '" fill="none" stroke="#888888" str…
366 $svg .= '</g></svg>';
375 $svg = '<?xml version="1.0" encoding="UTF-8"?>
[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/svg/
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/'
205 . md5( getID() ) . $syntax_plugin_svg_pcount . '.svg" width="'
208 . 'type="image/svg+xml" '
209 . 'pluginspage="http://www.adobe.com/svg/viewwer/install/" />';
214 . 'data/svg/media/'
[all …]
/plugin/asciidocjs/node_modules/supports-preserve-symlinks-flag/
DREADME.md1 # node-supports-preserve-symlinks-flag <sup>[![Version Badge][npm-version-svg]][package-url]</sup>
5 [![dependency status][deps-svg]][deps-url]
6 [![dev dependency status][dev-deps-svg]][dev-deps-url]
29 [npm-version-svg]: https://versionbadg.es/inspect-js/node-supports-preserve-symlinks-flag.svg
30 [deps-svg]: https://david-dm.org/inspect-js/node-supports-preserve-symlinks-flag.svg
32 [dev-deps-svg]: https://david-dm.org/inspect-js/node-supports-preserve-symlinks-flag/dev-status.svg
35 [license-image]: https://img.shields.io/npm/l/node-supports-preserve-symlinks-flag.svg
37 [downloads-image]: https://img.shields.io/npm/dm/node-supports-preserve-symlinks-flag.svg
39 … https://codecov.io/gh/inspect-js/node-supports-preserve-symlinks-flag/branch/main/graphs/badge.svg
/plugin/sequencediagram/bower_components/snap.svg/
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/asciidocjs/node_modules/has-proto/
DREADME.md1 # has-proto <sup>[![Version Badge][npm-version-svg]][package-url]</sup>
25 [npm-version-svg]: https://versionbadg.es/inspect-js/has-proto.svg
26 [deps-svg]: https://david-dm.org/inspect-js/has-proto.svg
28 [dev-deps-svg]: https://david-dm.org/inspect-js/has-proto/dev-status.svg
31 [license-image]: https://img.shields.io/npm/l/has-proto.svg
33 [downloads-image]: https://img.shields.io/npm/dm/has-proto.svg
35 [codecov-image]: https://codecov.io/gh/inspect-js/has-proto/branch/main/graphs/badge.svg
/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/
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/asciidocjs/node_modules/get-intrinsic/
DREADME.md1 # get-intrinsic <sup>[![Version Badge][npm-version-svg]][package-url]</sup>
5 [![dependency status][deps-svg]][deps-url]
6 [![dev dependency status][dev-deps-svg]][dev-deps-url]
58 [npm-version-svg]: https://versionbadg.es/ljharb/get-intrinsic.svg
59 [deps-svg]: https://david-dm.org/ljharb/get-intrinsic.svg
61 [dev-deps-svg]: https://david-dm.org/ljharb/get-intrinsic/dev-status.svg
64 [license-image]: https://img.shields.io/npm/l/get-intrinsic.svg
66 [downloads-image]: https://img.shields.io/npm/dm/get-intrinsic.svg
68 [codecov-image]: https://codecov.io/gh/ljharb/get-intrinsic/branch/main/graphs/badge.svg
/plugin/sequencediagram/bower_components/snap.svg/doc/fonts/
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/
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/twistienav4bootstrap3/
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/twistienav/
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/achart/assets/
Dapexcharts.css428 .apexcharts-svg {
432 .apexcharts-svg.apexcharts-zoomable.hovering-zoom {
436 .apexcharts-svg.apexcharts-zoomable.hovering-pan {
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 {
469 .apexcharts-theme-dark .apexcharts-zoom-icon svg,
[all …]

12345678910>>...76