6c920737740b3b804c6d1cce5e2a8450241a4878
[mirrors/DokuWiki-Plugin-SVGEdit.git] / syntax.php
1 <?php
2 /**
3 * SVGEdit Plugin: Nice way, to create, store, edit and embed SVG images into DokuWiki
4 * Usage:
5 * embed svg using do=export_svg
6 * {{svg>page.svg}}
7 * {{svg>namespace:page.svg}}
8 * base64 encode svg directly (requires ~~NOCACHE~~)
9 * {{SVG>page.svg}}
10 * {{SVG>namespace:page.svg}}
11 * base64 encode inline svg directly
12 * <svg args...>...code...</svg>
13 *
14 * @license Copylefted
15 * @author Thomas Mudrunka <harvie--email-cz>
16 */
17
18 if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/');
19 if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
20 require_once(DOKU_PLUGIN.'syntax.php');
21
22 class syntax_plugin_svgedit extends DokuWiki_Syntax_Plugin {
23
24 var $helper = null;
25
26 function getInfo() {
27 return array('author' => 'Thomas Mudrunka',
28 'email' => 'harvie--email-cz',
29 'date' => '2010-02-21',
30 'name' => 'SVG-Edit Plugin',
31 'desc' => 'Nice way, to create, store, edit and embed SVG images into DokuWiki',
32 'url' => 'http://www.dokuwiki.org/plugin:svgedit'
33 );
34 }
35
36 function getType() { return 'substition'; }
37 function getSort() { return 303; }
38 function getPType() { return 'block'; }
39
40 function connectTo($mode) {
41 $this->Lexer->addSpecialPattern("{{svg>.+?}}", $mode, 'plugin_svgedit');
42 $this->Lexer->addSpecialPattern("{{SVG>.+?}}", $mode, 'plugin_svgedit');
43 $this->Lexer->addSpecialPattern("<svg.+?</svg>", $mode, 'plugin_svgedit');
44 }
45
46 function handle($match, $state, $pos, &$handler) {
47 $type = substr($match,0,4);
48 return array($type, $match);
49 }
50
51 function svg_base64_encode($svg) { //create base64 encoded svg for use as svglink in svg_format_embed
52 return 'data:image/svg+xml;base64,'.base64_encode($svg).'" type="image/svg+xml';
53 }
54
55 function svg_format_embed($svglink, $alt, $svg_parameters) { //create xhtml code for svg embeding
56 global $ID;
57
58 //use object tag for stupid browsers (like firefox) - ugly (relies on browser identification)
59 $is_webkit= preg_match('/webkit/', strtolower($_SERVER['HTTP_USER_AGENT']));
60 if ($is_webkit)
61 $svgtag='img src';
62 else
63 $svgtag='object '.$svg_parameters.' data';
64
65 return '<a href="'.$svglink.'" type="image/svg+xml" /><'.$svgtag.'="'.$svglink.'" alt="'.$alt.'" type="image/svg+xml" /></a>'."<br />";
66 }
67
68 function render($format, &$renderer, $data) {
69 if ($format!='xhtml') return;
70 global $ID;
71
72 $svg_wiki_page = trim(substr($data[1], 6, -2)); //name of wiki page containing SVG image
73
74 //detect image size for stupid browsers (like firefox) - ugly (fails if svg does not contain information about it's size)
75 $svg_dimensions = '';
76 preg_match('/width="[0-9]+" height="[0-9]+"/', $data[1].rawWiki($svg_wiki_page), $_);
77 if(isset($_[0])) $svg_dimensions = $_[0];
78
79 if($data[0]==='<svg') {
80 $svgenc = $this->svg_base64_encode($data[1]);
81 $renderer->doc .= $this->svg_format_embed($svgenc, 'svg-image@'.$ID, $svg_dimensions);
82 return true;
83 }
84 if($data[0]==='{{sv') {
85 $svglink = exportlink($svg_wiki_page,'svg');
86 $renderer->doc .= $this->svg_format_embed($svglink, 'image:'.htmlspecialchars($svg_wiki_page), $svg_dimensions);
87 $renderer->doc .= html_wikilink($svg_wiki_page,'svg@'.$svg_wiki_page);
88 return true;
89 }
90 if($data[0]==='{{SV') {
91 $svgenc = $this->svg_base64_encode(rawWiki($svg_wiki_page));
92 $renderer->doc .= $this->svg_format_embed($svgenc, 'image:'.htmlspecialchars($svg_wiki_page), $svg_dimensions);
93 $renderer->doc .= html_wikilink($svg_wiki_page,'SVG@'.$svg_wiki_page);
94 return true;
95 }
96 }
97 }
This page took 0.426027 seconds and 3 git commands to generate.