]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/AsciiSVG.php
getName should not translate
[SourceForge/phpwiki.git] / lib / plugin / AsciiSVG.php
1 <?php
2
3 /*
4  * Copyright 2007 $ThePhpWikiProgrammingTeam
5  *
6  * This file is part of PhpWiki.
7  *
8  * PhpWiki is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * PhpWiki is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 /**
24  * Interface to http://www1.chapman.edu/~jipsen/svg/asciisvg.html
25  * Requires ENABLE_XHTML_XML = true
26  * Syntax: http://www1.chapman.edu/~jipsen/svg/asciisvgcommands.html
27  */
28 class WikiPlugin_AsciiSVG
29     extends WikiPlugin
30 {
31     function getDescription()
32     {
33         return _("Render inline ASCII SVG.");
34     }
35
36     function getDefaultArguments()
37     {
38         return array('width' => 200,
39             'height' => 200,
40             'script' => false, // one line script. not very likely
41             'onmousemove' => false
42         );
43     }
44
45     function handle_plugin_args_cruft(&$argstr, &$args)
46     {
47         $this->source = $argstr;
48     }
49
50     function run($dbi, $argstr, &$request, $basepage)
51     {
52         global $WikiTheme;
53         $args = $this->getArgs($argstr, $request);
54         if (empty($this->source)) {
55             return HTML::div(array('class' => "error"), 
56                    "Please provide SVG code to AsciiSVG plugin");
57         }
58         $html = HTML();
59         if (empty($WikiTheme->_asciiSVG)) {
60             $js = JavaScript('', array
61             ('src' => $WikiTheme->_findData('ASCIIsvg.js')));
62             if (empty($WikiTheme->_headers_printed))
63                 $WikiTheme->addMoreHeaders($js);
64             else
65                 $html->pushContent($js);
66             $WikiTheme->_asciiSVG = 1; // prevent duplicates
67         }
68         // extract <script>
69         if (preg_match("/^(.*)<script>(.*)<\/script>/ism", $this->source, $m)) {
70             $this->source = $m[1];
71             $args['script'] = $m[2];
72         }
73         $embedargs = array('width' => $args['width'],
74             'height' => $args['height'],
75             //'src'    => "d.svg",
76             'script' => $this->source);
77         // additional onmousemove argument
78         if ($args['onmousemove']) $embedargs['onmousemove'] = $args['onmousemove'];
79         // we need script='data' and not script="data"
80         $embed = new AsciiSVG_HTML("embed", $embedargs);
81         $html->pushContent($embed);
82         if ($args['script']) $html->pushContent(JavaScript($args['script']));
83         return $html;
84     }
85 }
86
87 class AsciiSVG_HTML extends HtmlElement
88 {
89     function startTag()
90     {
91         $start = "<" . $this->_tag;
92         $this->_setClasses();
93         foreach ($this->_attr as $attr => $val) {
94             if (is_bool($val)) {
95                 if (!$val)
96                     continue;
97                 $val = $attr;
98             }
99             $qval = str_replace("\"", '&quot;', $this->_quote((string)$val));
100             if ($attr == 'script')
101                 // note the ' not "
102                 $start .= " $attr='$qval'";
103             else
104                 $start .= " $attr=\"$qval\"";
105         }
106         $start .= ">";
107         return $start;
108     }
109 }
110
111 // Local Variables:
112 // mode: php
113 // tab-width: 8
114 // c-basic-offset: 4
115 // c-hanging-comment-ender-p: nil
116 // indent-tabs-mode: nil
117 // End: