]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/AsciiSVG.php
function run: @return mixed
[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     /**
51      * @param WikiDB $dbi
52      * @param string $argstr
53      * @param WikiRequest $request
54      * @param string $basepage
55      * @return mixed
56      */
57     function run($dbi, $argstr, &$request, $basepage)
58     {
59         global $WikiTheme;
60         $args = $this->getArgs($argstr, $request);
61         if (empty($this->source)) {
62             return HTML::div(array('class' => "error"), 
63                    "Please provide SVG code to AsciiSVG plugin");
64         }
65         $html = HTML();
66         if (empty($WikiTheme->_asciiSVG)) {
67             $js = JavaScript('', array
68             ('src' => $WikiTheme->_findData('ASCIIsvg.js')));
69             if (empty($WikiTheme->_headers_printed))
70                 $WikiTheme->addMoreHeaders($js);
71             else
72                 $html->pushContent($js);
73             $WikiTheme->_asciiSVG = 1; // prevent duplicates
74         }
75         // extract <script>
76         if (preg_match("/^(.*)<script>(.*)<\/script>/ism", $this->source, $m)) {
77             $this->source = $m[1];
78             $args['script'] = $m[2];
79         }
80         $embedargs = array('width' => $args['width'],
81             'height' => $args['height'],
82             //'src'    => "d.svg",
83             'script' => $this->source);
84         // additional onmousemove argument
85         if ($args['onmousemove']) $embedargs['onmousemove'] = $args['onmousemove'];
86         // we need script='data' and not script="data"
87         $embed = new AsciiSVG_HTML("embed", $embedargs);
88         $html->pushContent($embed);
89         if ($args['script']) $html->pushContent(JavaScript($args['script']));
90         return $html;
91     }
92 }
93
94 class AsciiSVG_HTML extends HtmlElement
95 {
96     function startTag()
97     {
98         $start = "<" . $this->_tag;
99         $this->_setClasses();
100         foreach ($this->_attr as $attr => $val) {
101             if (is_bool($val)) {
102                 if (!$val)
103                     continue;
104                 $val = $attr;
105             }
106             $qval = str_replace("\"", '&quot;', $this->_quote((string)$val));
107             if ($attr == 'script')
108                 // note the ' not "
109                 $start .= " $attr='$qval'";
110             else
111                 $start .= " $attr=\"$qval\"";
112         }
113         $start .= ">";
114         return $start;
115     }
116 }
117
118 // Local Variables:
119 // mode: php
120 // tab-width: 8
121 // c-basic-offset: 4
122 // c-hanging-comment-ender-p: nil
123 // indent-tabs-mode: nil
124 // End: