Now resolving relative links to namespaces
[mirrors/DokuWiki-Plugin-SVGEdit.git] / syntax.php
CommitLineData
b3a6ad9d
H
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
18if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/');
19if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
20require_once(DOKU_PLUGIN.'syntax.php');
21
22class 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',
ec719f7d 29 'date' => '2010-06-20',
b3a6ad9d
H
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
76281a1f
H
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
d7de41a4 55 function svg_format_embed($svglink, $title, $svg_parameters) { //create xhtml code for svg embeding
b3a6ad9d
H
56 global $ID;
57
3955ca30
H
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']));
34612ed6 60 if ($is_webkit)
32165dcc 61 $svgtag='img src';
34612ed6 62 else
3aaf5eee 63 $svgtag='object '.$svg_parameters.' data';
32165dcc 64
d7de41a4 65 return '<a href="'.$svglink.'" type="image/svg+xml" /><'.$svgtag.'="'.$svglink.'" alt="'.$title.'" title="'.$title.'" type="image/svg+xml" /></a>'."<br />";
32165dcc
H
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
61ec98e5 73 resolve_pageid(getNS($ID),$svg_wiki_page,$exists); //resolve relative IDs
32165dcc 74
3aaf5eee
H
75 //detect image size for stupid browsers (like firefox) - ugly (fails if svg does not contain information about it's size)
76 $svg_dimensions = '';
77 preg_match('/width="[0-9]+" height="[0-9]+"/', $data[1].rawWiki($svg_wiki_page), $_);
78 if(isset($_[0])) $svg_dimensions = $_[0];
79
b3a6ad9d 80 if($data[0]==='<svg') {
76281a1f 81 $svgenc = $this->svg_base64_encode($data[1]);
d7de41a4 82 $renderer->doc .= $this->svg_format_embed($svgenc, 'inline-svg@'.$ID, $svg_dimensions);
b3a6ad9d
H
83 return true;
84 }
85 if($data[0]==='{{sv') {
32165dcc 86 $svglink = exportlink($svg_wiki_page,'svg');
3aaf5eee 87 $renderer->doc .= $this->svg_format_embed($svglink, 'image:'.htmlspecialchars($svg_wiki_page), $svg_dimensions);
d7de41a4 88 $renderer->doc .= '<small>'.html_wikilink($svg_wiki_page,'svg@'.$svg_wiki_page).'</small>';
b3a6ad9d
H
89 return true;
90 }
91 if($data[0]==='{{SV') {
76281a1f 92 $svgenc = $this->svg_base64_encode(rawWiki($svg_wiki_page));
3aaf5eee 93 $renderer->doc .= $this->svg_format_embed($svgenc, 'image:'.htmlspecialchars($svg_wiki_page), $svg_dimensions);
d7de41a4 94 $renderer->doc .= '<small>'.html_wikilink($svg_wiki_page,'SVG@'.$svg_wiki_page).'</small>';
b3a6ad9d
H
95 return true;
96 }
97 }
98}
This page took 0.226345 seconds and 4 git commands to generate.