summaryrefslogtreecommitdiff
path: root/inc/parser/wiki.php
blob: 2f35b0a1f05ab4c140e80d4290f7da56d26c2cec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
<?php
//FIXME!! remove the line ignoring the 'wiki' export mode from
// inc/parserutils.php#p_renderer() when this file works.

/**
* Basis for converting to Dokuwiki syntax
* This is not yet complete but useable for converting
* phpWiki syntax.
* Main issues lie with lists, quote and tables
*/
class Doku_Renderer_Wiki extends Doku_Renderer {

    var $doc = '';

    // This should be eliminated
    var $listMarker = '*';

    function document_start() {
        ob_start();
    }

    function document_end() {

        $this->doc .= ob_get_contents();
        ob_end_clean();

    }

    function header($text, $level) {
        $levels = array(
            1=>'======',
            2=>'=====',
            3=>'====',
            4=>'===',
            5=>'==',
        );

        if ( isset($levels[$level]) ) {
            $token = $levels[$level];
        } else {
            $token = $levels[1];
        }
        echo "\n{$token} ";
        echo trim($text);
        echo " {$token}\n";
    }

    function cdata($text) {
        echo $text;
    }

    function linebreak() {
        echo '\\\\ ';
    }

    function hr() {
        echo "\n----\n";
    }

    function strong_open() {
        echo '**';
    }

    function strong_close() {
        echo '**';
    }

    function emphasis_open() {
        echo '//';
    }

    function emphasis_close() {
        echo '//';
    }

    function underline_open() {
        echo '__';
    }

    function underline_close() {
        echo '__';
    }

    function monospace_open() {
        echo "''";
    }

    function monospace_close() {
        echo "''";
    }

    function subscript_open() {
        echo '<sub>';
    }

    function subscript_close() {
        echo '</sub>';
    }

    function superscript_open() {
        echo '<sup>';
    }

    function superscript_close() {
        echo '</sup>';
    }

    function deleted_open() {
        echo '<del>';
    }

    function deleted_close() {
        echo '</del>';
    }

    function footnote_open() {
        echo '((';
    }

    function footnote_close() {
        echo '))';
    }

    function listu_open() {
        $this->listMarker = '*';
        echo "\n";
    }

    function listo_open() {
        $this->listMarker = '-';
        echo "\n";
    }

    /**
    * @TODO Problem here with nested lists
    */
    function listitem_open($level) {
        echo str_repeat('  ', $level).$this->listMarker;
    }

    function listitem_close() {
        echo "\n";
    }

    function unformatted($text) {
        echo '%%'.$text.'%%';
    }

    function php($text) {
        echo "\n<php>\n$text\n</php>\n";
    }

    function html($text) {
        echo "\n<html>\n$text\n</html>\n";
    }

    /**
    * Indent?
    */
    function preformatted($text) {
        echo "\n<code>\n$text\n</code>\n";
    }

    function file($text) {
        echo "\n<file>\n$text\n</file>\n";
    }

    /**
    * Problem here with nested quotes
    */
    function quote_open() {
        echo '>';
    }

    function quote_close() {
        echo "\n";
    }

    function code($text, $lang = NULL) {
        if ( !$lang ) {
            echo "\n<code>\n$text\n</code>\n";
        } else {
            echo "\n<code $lang>\n$text\n</code>\n";
        }

    }

    function acronym($acronym) {
        echo $acronym;
    }

    function smiley($smiley) {
        echo $smiley;
    }

    function wordblock($word) {
        echo $word;
    }

    function entity($entity) {
        echo $entity;
    }

    // 640x480 ($x=640, $y=480)
    function multiplyentity($x, $y) {
        echo "{$x}x{$y}";
    }

    function singlequoteopening() {
        echo "'";
    }

    function singlequoteclosing() {
        echo "'";
    }

    function doublequoteopening() {
        echo '"';
    }

    function doublequoteclosing() {
        echo '"';
    }

    // $link like 'SomePage'
    function camelcaselink($link) {
        echo $link;
    }

    // $link like 'wikie:syntax', $title could be an array (media)
    function internallink($link, $title = NULL) {
        if ( $title ) {
            echo '[['.$link.'|'.$title.']]';
        } else {
            echo '[['.$link.']]';
        }
    }

    // $link is full URL with scheme, $title could be an array (media)
    function externallink($link, $title = NULL) {
        if ( $title ) {
            echo '[['.$link.'|'.$title.']]';
        } else {
            echo '[['.$link.']]';
        }
    }

    // $link is the original link - probably not much use
    // $wikiName is an indentifier for the wiki
    // $wikiUri is the URL fragment to append to some known URL
    function interwikilink($link, $title = NULL, $wikiName, $wikiUri) {
        if ( $title ) {
            echo '[['.$link.'|'.$title.']]';
        } else {
            echo '[['.$link.']]';
        }
    }

    // Link to file on users OS, $title could be an array (media)
    function filelink($link, $title = NULL) {
        if ( $title ) {
            echo '[['.$link.'|'.$title.']]';
        } else {
            echo '[['.$link.']]';
        }
    }

    // Link to a Windows share, , $title could be an array (media)
    function windowssharelink($link, $title = NULL) {
        if ( $title ) {
            echo '[['.$link.'|'.$title.']]';
        } else {
            echo '[['.$link.']]';
        }
    }

    function email($address, $title = NULL) {
        if ( $title ) {
            echo '[['.$address.'|'.$title.']]';
        } else {
            echo '[['.$address.']]';
        }
    }

    // @TODO
    function internalmedialink (
        $src,$title=NULL,$align=NULL,$width=NULL,$height=NULL,$cache=NULL
        ) {

    }

    // @TODO
    function externalmedialink(
        $src,$title=NULL,$align=NULL,$width=NULL,$height=NULL,$cache=NULL
        ) {
        if ( $title ) {
            echo '{{'.$src.'|'.$title.'}}';
        } else {
            echo '{{'.$src.'}}';
        }
    }

    function table_open($maxcols = NULL, $numrows = NULL){}

    function table_close(){}

    function tablerow_open(){}

    function tablerow_close(){}

    function tableheader_open($colspan = 1, $align = NULL){}

    function tableheader_close(){}

    function tablecell_open($colspan = 1, $align = NULL){}

    function tablecell_close(){}

}


//Setup VIM: ex: et ts=2 enc=utf-8 :