forked from wikiLingo/wikiLingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWikiLingo.php
1629 lines (1393 loc) · 48 KB
/
WikiLingo.php
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
class WikiLingo extends WikiLingo_Definition
{
/* parser tracking */
private $parsing = false;
private static $spareParsers = array();
public $parseDepth = 0;
/* the root parser, where many variables need to be tracked from, maintained on any hierarchy of children parsers */
public $Parser;
/* parser debug */
public $parserDebug = false;
public $lexerDebug = false;
/* plugin tracking */
public $pluginStack = array();
public $pluginStackCount = 0;
public $pluginEntries = array();
public $plugins = array();
public static $pluginIndexes = array();
public $pluginNegotiator;
public $originalInput = '';
/* track syntax that is broken */
public $repairingStack = array();
/* np tracking */
public $npStack = false; //There can only be 1 active np stack
/* pp tracking */
public $ppStack = false; //There can only be 1 active np stack
/* link tracking*/
public $linkStack = false; //There can only be 1 active link stack
/* used in block level items, should be set to true if the next line needs skipped of a <br />
The next break sets it back to false; */
public $skipBr = false;
public $tableStack = array();
/* header tracking */
public $header;
public $headerStack = false;
/* list tracking and parser */
public $list;
/* autoLink parser */
public $autoLink;
/* wiki link parser */
public $link;
/*hotWords parser */
public $hotWords;
/* smiley parser */
public $smileys;
/* dynamic var parser */
public $dynamicVar;
/* special character */
public $specialCharacter;
/* html tag tracking */
public $nonBreakingTagDepth = 0;
/* line tracking */
public $isFirstBr = false;
public $line = 0;
public $user;
public $prefs;
public $page;
public $isHtmlPurifying = false;
private $pcreRecursionLimit;
public $cssLocations = array();
public $scriptLocations = array();
public $scripts = array();
public $existingScriptsAndLocations = array();
public $option = array();
public $optionProtectEmail = false;
public $optionSkipValidation = false;
public $optionIsHtml = false;
public $optionAbsoluteLinks = false;
public $optionLanguage = '';
public $optionPrint = false;
public $optionPreviewMode = false;
public $optionSuppressIcons = false;
public $optionParseTOC = true;
public $optionParseSmileys = true;
public $optionSkipPageCache = false;
/**
* construct
*
* @access public
* @param JisonParser_Wiki_Handler $Parser Filename to be used
*/
public function __construct(JisonParser_Wiki_Handler &$Parser = null)
{
global $user;
$this->emptyParserValue = new WikiLingo_Expression();
parent::__construct();
$this->user = (isset($user) ? $user : '');
if (empty($Parser)) {
$this->Parser = &$this;
} else {
$this->Parser = &$Parser;
}
if (isset($this->pluginNegotiator) == false) {
$this->pluginNegotiator = new WikiLingo_PluginNegotiator($this->Parser);
}
if (isset($this->Parser->header) == false) {
$this->Parser->header = new WikiLingo_Expression_Header($this->Parser);
}
if (isset($this->Parser->list) == false) {
$this->Parser->list = new WikiLingo_Expression_List($this->Parser);
}
if (isset($this->Parser->hotWords) == false) {
$this->Parser->hotWords = new WikiLingo_Expression_HotWords($this->Parser);
}
if (isset($this->Parser->smileys) == false) {
$this->Parser->smileys = new WikiLingo_Expression_Smileys();
}
if (isset($this->Parser->dynamicVar) == false) {
$this->Parser->dynamicVar = new WikiLingo_Expression_DynamicVariables($this->Parser);
}
if (isset($this->specialCharacter) == false) {
$this->specialCharacter = new WikiLingo_Expression_SpecialChar($this->Parser);
}
parent::__construct();
}
/*
function parserPerformAction(&$thisS, $yytext, $yyleng, $yylineno, $yystate, $S, $_S, $O)
{
$result = parent::parser_performAction($thisS, $yytext, $yyleng, $yylineno, $yystate, $S, $_S, $O);
if ($this->parserDebug == true) {
$thisS = "{" . $thisS . ":" . $yystate ."," . $this->skipBr . "}";
}
return $result;
}
function lexerPerformAction(&$yy, $yy_, $avoiding_name_collisions, $YY_START = null) {
$result = parent::lexer_performAction($yy, $yy_, $avoiding_name_collisions, $YY_START);
if ($this->lexerDebug == true) {
echo "{" . $result . ":" .$avoiding_name_collisions . "," . $this->skipBr . "}" . $yy_->yytext . "\n";
}
return $result;
}
function parseError($error, $info)
{
echo $error;
die;
}
*/
/**
* Where a parse generally starts. Can be self-called, as this is detected, and if nested, a new parser is instantiated
*
* @access private
* @param string $input Wiki syntax to be parsed
* @return string $output Parsed wiki syntax
*/
function parse($input)
{
if (empty($input)) {
return $input;
}
if ($this->parsing == true) {
$class = get_class($this->Parser);
$parser = new $class($this->Parser);
$output = $parser->parse($input);
unset($parser);
} else {
$this->parsing = true;
$this->preParse($input);
$this->Parser->parseDepth++;
$output = parent::parse($input)->text;
$this->Parser->parseDepth--;
$this->parsing = false;
$this->postParse($output);
}
return $output;
}
/**
* Parse a plugin's body. public so that negotiator can use. option 'noparseplugins' makes this function return the body without parse.
*
* @access public
* @param string $input Plugin body
* @return string $output Parsed plugin body or $input if not parsed
*/
public function parsePlugin($input)
{
if (empty($input)) return "";
if ($this->getOption('noparseplugins') == false) {
$is_html = $this->getOption('is_html');
if ($is_html == false) {
$this->setOption(array('is_html' => true));
}
$output = $this->parse($input);
if ($is_html == false) {
$this->setOption(array('is_html' => $is_html));
}
return $output;
} else {
return $input;
}
}
/**
* Event just before JisonParser_Wiki->parse(), used to ready parser, ensuring defaults needed for parsing are set.
* <p>
* pcre.recursion_limit is temporarily changed here. php default is 100,000 which is just too much for this type of
* parser. The reason for this code is the use of preg_* functions using pcre library. Some of the regex needed is
* just too much for php to handle, so by limiting this for regex we speed up the parser and allow it to safely
* lex/parse a string more here: http://stackoverflow.com/questions/7620910/regexp-in-preg-match-function-returning-browser-error
*
* @access private
* @param string &$input input that will be parsed
*/
private function preParse(&$input)
{
if ($this->Parser->parseDepth == 0) {
$this->pcreRecursionLimit = ini_get("pcre.recursion_limit");
ini_set("pcre.recursion_limit", "524");
$this->Parser->list->reset();
}
$this->line = 0;
$this->isFirstBr = false;
$this->skipBr = false;
$this->tableStack = array();
$this->nonBreakingTagDepth = 0;
$this->npStack = false;
$this->ppStack = false;
$this->linkStack = false;
if ($input{0} == "\n" && $this->isBlockStartSyntax($input{1})) {
$this->isFirstBr = true;
}
$input = "\n" . $input . "≤REAL_EOF≥"; //here we add 2 lines, so the parser doesn't have to do special things to track the first line and last, we remove these when we insert breaks, these are dynamically removed later
$input = str_replace("\r", "", $input);
$input = $this->specialCharacter->protect($input);
if ($this->Parser->parseDepth == 0) {
$this->Parser->originalInput = preg_split('/\n/', $input);
}
}
/**
* Event just after JisonParser_Wiki->parse(), used to ready parser, ensuring defaults needed for parsing are set.
* <p>
* pcre.recursion_limit is reset here if parser depth is 0 (ie, no nested parsing)
*
* @access private
* @param string &$output parsed output of wiki syntax
*/
function postParse(&$output)
{
/*
//remove comment artifacts
$output = str_replace("<!---->", "", $output);
//Replace special end tag
$this->removeEOF($output);
if ( $this->getOption('parseLists') == true) {
$lists = $this->Parser->list->toHtml();
if (!empty($lists)) {
$lists = array_reverse($lists);
foreach ($lists as $key => &$list) {
$output = str_replace($key, $list, $output);
unset($list);
}
}
}
if (isset($this->Parser->smileys) && $this->getOption('parseSmileys')) {
$this->Parser->smileys->parse($output);
}
$this->restorePluginEntities($output);
if (isset($this->Parser->autoLink)) {
$this->Parser->autoLink->parse($output);
}
if (isset($this->Parser->hotWords)) {
$this->Parser->hotWords->parse($output);
}
if (isset($this->Parser->dynamicVar)) {
$this->Parser->dynamicVar->makeForum($output);
}
if ($this->Parser->parseDepth == 0) {
ini_set("pcre.recursion_limit", $this->pcreRecursionLimit);
$output = $this->specialCharacter->unprotect($output);
}
*/
$output = $output->render($this->Parser);
}
public function content(&$content)
{
return new WikiLingo_Expression($content);
}
/**
* Handles plugins directly from the wiki parser. A plugin can be on a different level of the current parser, and
* if so, the execution is delayed until the parser reaches that level.
*
* @access private
* @param array &$pluginDetails plugins details in an array
* @return string either returns $key or block from execution message
*/
public function plugin(&$name, &$parameters, &$end = null, &$body = null)
{
if (is_null($body)) {
return new WikiLingo_Expression_Plugin($name->text, $parameters->text, (isset($end->text) ? $end->text : null), null, null, '');
}
return new WikiLingo_Expression_Plugin($name->text, $parameters->text, $end->text, $body->text, $this->syntaxBetween($parameters->loc, $end->loc), $this->syntax($name->loc, $end->loc));
/*//TODO: move to expression post-parse
$negotiator =& $this->pluginNegotiator;
$negotiator->setPlugin($plugin);
if ( !$this->optionSkipValidation ) {
$status = $negotiator->canExecute();
} else {
$status = true;
}
if ($status === true) {
//$plugins is a bit different that pluginEntries, an entry will be popped later, $plugins is more for
tracking, although their values may be the same for a time, the end result will be an empty entries, but
$plugins will have all executed plugin in it//
$this->plugins[$negotiator->key] = $negotiator->body;
$executed = $negotiator->execute();
if ($negotiator->ignored == true) {
return $executed;
} else {
$this->pluginEntries[$negotiator->key] = $this->parsePlugin($executed);
return $negotiator->key;
}
} else {
return $negotiator->blockFromExecution($status);
}
*/
}
public function inlinePlugin($yytext)
{
$pluginName = $this->match('/^\{([a-z]+)/', $yytext);
return new WikiLingo_Plugin($pluginName, $yytext, '', $yytext, '');
}
/**
* Stacks plugins for execution, since plugins can be called within each other. Public because called directly by
* the lexer of the wiki parser
*
* @access public
* @param string $yytext The analysed text from the wiki parser
*/
public function stackPlugin($name)
{
$this->pluginStackCount++;
$this->pluginStack[] = substr($name, 1, -1);
}
/**
* Detects if we are in a state that we can call the lexed grammer 'content'. Since the execution technique from
* the parser is inside-out, this helps us reverse the execution from outside-in in some cases.
*
* @access public
* @param array $skipTypes List of different ignourable stack types found on $this, like npStack, ppStack, or lineStack
* @return string true if content is current not parse-able
*/
public function isContent($skipTypes = array())
{
//These types will be found in $this. If any of these states are active, we should NOT parse wiki syntax
$types = array(
'npStack' => true,
'ppStack' => true,
'linkStack' => true
);
foreach ($skipTypes as $skipType) {
if (isset($types[$skipType])) {
unset($types[$skipType]);
}
}
//first off, if in plugin
if ($this->pluginStackCount > 0) {
return true;
}
//second, if we are not in a plugin, check if we are in content, ie, non-parse-able wiki syntax
foreach ($types as $type => $value) {
if ($this->$type == $value) {
return true;
}
}
//lastly, if we are not in content, return null, which allows cases to continue lexing
return null;
}
/**
* Removed any entity (plugin, list, header) from an input
*
* @param string $input The analysed text from the wiki parser
*/
static function deleteEntities(&$input)
{
$input = preg_replace('/§[a-z0-9]{32}§/', '', $input);
}
/**
* restores the plugins back into the string being parsed.
*
* @access private
* @param string $output Parsed syntax
*/
private function restorePluginEntities(&$output)
{
//use of array_reverse, jison is a reverse bottom-up parser, if it doesn't reverse jison doesn't restore the plugins in the right order, leaving the some nested keys as a result
array_reverse($this->pluginEntries);
$iterations = 0;
$limit = 100;
while (!empty($this->pluginEntries) && $iterations <= $limit) {
$iterations++;
foreach ($this->pluginEntries as $key => $entity) {
if (strstr($output, $key)) {
if ($this->getOption('stripplugins') == true) {
$output = str_replace($key, '', $output);
} else {
$output = str_replace($key, $entity, $output);
}
}
}
}
if ($this->Parser->parseDepth == 0) {
$this->pluginNegotiator->executeAwaiting($output);
}
}
//end state handlers
//Wiki Syntax Objects Parsing Start
/**
* syntax handler: noparse, ~np~$content~/np~
*
* @access public
* @param $content string parsed string found inside detected syntax
* @return string $content desired output from syntax
*/
public function noParse($content)
{
if ( $this->getOption('parseNps') == true) {
$content = $this->specialCharacter->unprotect($content);
}
return $content;
}
/**
* syntax handler: pre, ~pp~$content~/pp~
*
* @access public
* @param $content string parsed string found inside detected syntax
* @return string $content desired output from syntax
*/
function preFormattedText($content)
{
return $this->createWikiTag("preFormattedText", "pre", $content);
}
/**
* syntax handler: generic html
* <p>
* Used in detecting if we need a break, and line number in some cases
*
* @access public
* @param $content string parsed string found inside detected syntax
* @return string $content desired output from syntax
*/
function htmlTag($content)
{
$parts = preg_split("/[ >]/", substr($this->specialCharacter->unprotect($content, true), 1)); //<tag> || <tag name="">
$name = strtolower(trim($parts[0]));
switch ($name) {
//start block level
case 'h1':
case 'h2':
case 'h3':
case 'h4':
case 'h5':
case 'h6':
case 'pre':
case 'ul':
case 'li':
case 'dl':
case 'div':
case 'table':
case 'p':
$this->skipBr = true;
case 'script':
$this->nonBreakingTagDepth++;
$this->line++;
break;
//end block level
case '/h1':
case '/h2':
case '/h3':
case '/h4':
case '/h5':
case '/h6':
case '/pre':
case '/ul':
case '/li':
case '/dl':
case '/div':
case '/table':
case '/p':
$this->skipBr = true;
case '/script':
$this->nonBreakingTagDepth--;
$this->nonBreakingTagDepth = max($this->nonBreakingTagDepth, 0);
$this->line++;
break;
//skip next block level
case 'hr':
case 'br':
$this->skipBr = true;
break;
}
return $content;
}
/**
* syntax handler: double dynamic variable, %%$content%%
*
* @access public
* @param $content string parsed string found inside detected syntax
* @return string $content desired output from syntax
*/
function doubleDynamicVar($content)
{
global $prefs;
if ( $prefs['wiki_dynvar_style'] != 'double') {
return $content;
}
return $this->Parser->dynamicVar->ui(substr($content, 2, 2), $this->getOption('language'), true);
}
/**
* syntax handler: single dynamic variable, %$content%
*
* @access public
* @param $content string parsed string found inside detected syntax
* @return string $content desired output from syntax
*/
function singleDynamicVar($content)
{
global $prefs;
if ( $prefs['wiki_dynvar_style'] != 'single') {
return $content;
}
return $this->Parser->dynamicVar->ui(substr($content, 1, 1), $this->getOption('language'));
}
/**
* syntax handler: argument variable, {{$content}}
*
* @access public
* @param $content string parsed content found inside detected syntax
* @return string $content desired output from syntax
*/
function argumentVar($content)
{
$content = substr($content, 2, -2); //{{page}}
global $user, $page;
$parts = explode('|', $content);
$value = '';
$name = '';
if (isset($parts[0])) {
$name = $parts[0];
}
if (isset($parts[1])) {
$value = $parts[1];
}
switch( $name ) {
case 'user':
$value = $user;
break;
case 'page':
$value = $this->getOption('page');
break;
default:
if ( isset($_REQUEST[$name]) ) {
$value = $_REQUEST[$name];
}
break;
}
return $value;
}
/**
* syntax handler: bold/strong, __$content__
*
* @access public
* @param $content string parsed content found inside detected syntax
* @return string $content desired output from syntax
*/
function bold($content) //__content__
{
return $this->createWikiTag("bold", "strong", $content);
}
/**
* syntax handler: simple box, ^$content^
*
* @access public
* @param $content string parsed content found inside detected syntax
* @return string $content desired output from syntax
*/
function box($content) //^content^
{
return $this->createWikiTag("box", "div", $content->text, array("class" => "simplebox"));
}
/**
* syntax handler: center, ::$content::
*
* @access public
* @param $content string parsed content found inside detected syntax
* @return string $content desired output from syntax
*/
function center($content) //::content::
{
return $this->createWikiTag(
"center",
"div",
$content,
array(
"style" => "text-align: center;"
)
);
}
/**
* syntax handler: code, -+$content+-
*
* @access public
* @param $content string parsed content found inside detected syntax
* @return string $content desired output from syntax
*/
function code($content)
{
return $this->createWikiTag("code", "code", $content);
}
/**
* syntax handler: text color, ~~$color:$content~~
*
* @access public
* @param $content string parsed content found inside detected syntax
* @return string $content desired output from syntax
*/
function color($content)
{
$text = explode(':', $content);
$color = $text[0];
$content = $text[1];
return $this->createWikiTag(
"color", "span", $content,
array(
"style" => "color:" . $color .';'
)
);
}
/**
* syntax handler: italic/emphasis, ''$content''
*
* @access public
* @param $content string parsed content found inside detected syntax
* @return string $content desired output from syntax
*/
function italic($content) //''content''
{
return $this->createWikiTag("italic", "em", $content);
}
/**
* syntax handler: left to right, \n{l2r}$content
*
* @access public
* @param $content string parsed content found inside detected syntax
* @return string $content desired output from syntax
*/
function l2r($content)
{
$content = substr($content, 5);
return $this->createWikiTag(
"l2r", "div", $content,
array(
"dir" => "ltr"
)
);
}
/**
* syntax handler: right to left, \n{r2l}$content
*
* @access public
* @param $content string parsed content found inside detected syntax
* @return string $content desired output from syntax
*/
function r2l($content)
{
$content = substr($content, 5);
return $this->createWikiTag(
"r2l", "div", $content,
array(
"dir" => "rtl"
)
);
}
/**
* syntax handler: header, \n!$content
* <p>
* Uses $this->Parser->header as a processor. Is called from $this->block().
*
* @access public
* @param $content string parsed content found inside detected syntax
* @return string $content desired output from syntax
*/
function header($content, $trackExclamationCount = false) //!content
{
global $prefs;
$exclamationCount = 0;
$headerLength = strlen($content);
for ($i = 0; $i < $headerLength; $i++) {
if ($content[$i] == '!') {
$exclamationCount++;
} else {
break;
}
}
$content = substr($content, $exclamationCount);
$this->removeEOF($content);
$hNum = min(6, $exclamationCount); //html doesn't support 7+ header level
$id = $this->Parser->header->stack($hNum, $content);
$button = '';
global $section, $tiki_p_edit;
if (
$prefs['wiki_edit_section'] === 'y' &&
$section === 'wiki page' &&
$tiki_p_edit === 'y' &&
(
$prefs['wiki_edit_section_level'] == 0 ||
$hNum <= $prefs['wiki_edit_section_level']
) &&
! $this->getOption('print') &&
! $this->getOption('suppress_icons') &&
! $this->getOption('preview_mode')
) {
$button = $this->createWikiHelper("header", "span", $this->Parser->header->button($prefs['wiki_edit_icons_toggle']));
}
$this->skipBr = true;
//expanding headers
$expandingHeaderClose = '';
$expandingHeaderOpen = '';
if ($this->headerStack == true) {
$this->headerStack = false;
$expandingHeaderClose = $this->createWikiHelper("header", "div", "", array(), "close");
}
if ($content{0} == '-') {
$content = substr($content, 1);
$this->headerStack = true;
$expandingHeaderOpen =
$this->createWikiHelper(
"header", "a", "[+]",
array(
"id" => "flipperflip" . $id,
"href" => "javascript:flipWithSign(\'flip' . $id .'\')"
)
) .
$this->createWikiHelper(
"header", "div", "",
array(
"id" => "flip". $id,
"class" => "showhide_heading",
), "open"
);
}
$params = array(
"id" => $id,
);
if ($trackExclamationCount) {
$params['data-count'] = $exclamationCount;
}
$result =
$expandingHeaderClose .
$button .
$this->createWikiTag(
"header", 'h' . $hNum, $content, $params
) .
$expandingHeaderOpen;
return $result;
}
/**
* syntax handler: list, \n*$content
* <p>
* List types: * (unordered), # (ordered), + (line break), - (expandable), ; (definition list)
* <p>
* Uses $this->Parser->list as a processor. Is called from $this->block().
*
* @access public
* @param $content string parsed content found inside detected syntax
* @return string $content desired output from syntax
*/
function stackList($content)
{
$level = 0;
$listLength = strlen($content);
$type = '';
$noiseLength = 0;
for ($i = 0; $i < $listLength; $i++) {
if (empty($type)) {
//This will be the start of the string
$type = $content{$i};
$level++;
//definitions are only 1 in depth
if ($type == ';') {
break;
}
} else if (
$content{$i} == "*" ||
$content{$i} == "#" ||
$content{$i} == "+"
) {
$level++;
} elseif ($content{$i} == '-') {
$type .= $content{$i};
$noiseLength++;
break;
} else {
break;
}
}
$content = substr($content, ($level + $noiseLength));
$this->removeEOF($content);
$result = $this->Parser->list->stack($this->line, $level, $content, $type);
if (isset($result)) {
$this->skipBr = true;
return $result;
}
return '';
}
/**
* syntax handler: horizontal row, ---
*
* @access public
* @return string html hr element
*/
function hr() //---
{
$this->line++;
$this->skipBr = true;
return $this->createWikiTag("horizontalRow", "hr", "", array(), "inline");
}
/**
* syntax handler: new line, \n
* <p>
* Detects if a line break is needed and returns it. If $this->skipBr is set to true, skips output of <br /> and
* sets it back to false for the next line to process
*
* @access public
* @param $ch line line character
* @return string $result of line process
*/
function line($ch)
{
$this->line++;
$skipBr = $this->skipBr;
$this->skipBr = false; //skipBr must always must be false when done processing line
//The first \n was inserted just before parse
if ($this->isFirstBr == false) {
$this->isFirstBr = true;
return new WikiLingoWYSIWYG_Expression($ch->text);
}
$result = new WikiLingoWYSIWYG_Expression('');
if ($skipBr == false && $this->nonBreakingTagDepth == 0) {
$result = $this->createWikiTag("line", "br", "", array(), "inline");
}
$result->text .= $ch->text;
return $result;
}
/**
* syntax handler: forced line end, %%%
* <p>
* Note: does not affect line number
*
* @access public
* @return string html break, <br />
*/
function forcedLineEnd()
{
return $this->createWikiTag("forcedLineEnd", "br", "", array(), "inline");
}