4 require_once(
"./Services/COPage/classes/class.ilPageContent.php");
5 require_once(
"./Services/COPage/classes/class.ilWysiwygUtil.php");
39 $childs = $a_node->child_nodes();
41 for ($i=0; $i<count($childs); $i++)
43 if ($childs[$i]->node_name() ==
"Paragraph")
45 $this->par_node = $childs[$i];
59 $this->par_node =& $this->dom->create_element(
"Paragraph");
60 $this->par_node =& $this->node->append_child($this->par_node);
61 $this->par_node->set_attribute(
"Language",
"");
62 $node->append_child ($this->node);
74 if($succ_node =
$node->next_sibling())
76 $this->node = $succ_node->insert_before($this->node, $succ_node);
80 $parent_node =
$node->parent_node();
81 $this->node = $parent_node->append_child($this->node);
83 $this->par_node = $this->dom->create_element(
"Paragraph");
84 $this->par_node = $this->node->append_child($this->par_node);
85 $this->par_node->set_attribute(
"Language",
"");
95 function create(&$a_pg_obj, $a_hier_id, $a_pc_id =
"")
98 $this->node =& $this->dom->create_element(
"PageContent");
100 $this->par_node =& $this->dom->create_element(
"Paragraph");
101 $this->par_node =& $this->node->append_child($this->par_node);
102 $this->par_node->set_attribute(
"Language",
"");
111 function setText($a_text, $a_auto_split =
false)
114 if (!is_array($a_text))
116 $text = array(array(
"level" => 0,
"text" => $a_text));
130 foreach ($text as
$t)
132 $check.=
"<Paragraph>".$t[
"text"].
"</Paragraph>";
136 $temp_dom =
domxml_open_mem(
'<?xml version="1.0" encoding="UTF-8"?><Paragraph>'.$check.
'</Paragraph>',
143 $temp_dom =
domxml_open_mem(
'<?xml version="1.0" encoding="UTF-8"?><Paragraph>'.$text[0][
"text"].
'</Paragraph>',
147 $children = $this->par_node->child_nodes();
148 for($i=0; $i<count($children); $i++)
150 $this->par_node->remove_child($children[$i]);
155 $path =
"//Paragraph";
157 if (count(
$res->nodeset) == 1)
159 $new_par_node =&
$res->nodeset[0];
160 $new_childs = $new_par_node->child_nodes();
162 for($i=0; $i<count($new_childs); $i++)
164 $cloned_child =& $new_childs[$i]->clone_node(
true);
165 $this->par_node->append_child($cloned_child);
171 if ((count($text) > 1) && (substr($orig_characteristic, 0, 8) ==
"Headline"))
173 $orig_characteristic =
"";
175 if ($text[0][
"level"] > 0)
177 $this->par_node->set_attribute(
"Characteristic",
'Headline'.$text[0][
"level"]);
185 for ($i=1; $i<count($text); $i++)
190 $next_par->createAfter($c_node);
192 if ($text[$i][
"level"] > 0)
194 $next_par->setCharacteristic(
"Headline".$text[$i][
"level"]);
198 $next_par->setCharacteristic($orig_characteristic);
200 $ok = $next_par->setText($text[$i][
"text"],
false);
201 $c_node = $next_par->node;
210 $text = str_replace(
"<br>",
"\n", $check);
211 $text = str_replace(
"<br/>",
"\n", $text);
212 $text = str_replace(
"<br />",
"\n", $text);
213 $text = str_replace(
"</SimpleListItem>",
"</SimpleListItem>\n", $text);
214 $text = str_replace(
"<SimpleBulletList>",
"\n<SimpleBulletList>", $text);
215 $text = str_replace(
"<SimpleNumberedList>",
"\n<SimpleNumberedList>", $text);
216 $text = str_replace(
"<Paragraph>\n",
"<Paragraph>", $text);
217 $text = str_replace(
"</Paragraph>",
"</Paragraph>\n", $text);
218 include_once(
"./Services/Dom/classes/class.ilDomDocument.php");
219 $doc =
new ilDOMDocument();
220 $text =
'<?xml version="1.0" encoding="UTF-8"?><Paragraph>'.$text.
'</Paragraph>';
222 $this->success = $doc->loadXML($text);
227 $e = str_replace(
" in Entity",
"", $e);
241 if (is_object($this->par_node))
244 $childs = $this->par_node->child_nodes();
245 for($i=0; $i<count($childs); $i++)
247 $content .= $this->dom->dump_node($childs[$i]);
266 $this->par_node->set_attribute(
"Characteristic", $a_char);
270 if ($this->par_node->has_attribute(
"Characteristic"))
272 $this->par_node->remove_attribute(
"Characteristic");
284 if (is_object($this->par_node))
286 return $this->par_node->get_attribute(
"Characteristic");
298 $this->par_node->set_attribute(
"SubCharacteristic", $a_char);
302 if ($this->par_node->has_attribute(
"SubCharacteristic"))
304 $this->par_node->remove_attribute(
"SubCharacteristic");
316 return $this->par_node->get_attribute(
"AutoIndent");
323 $this->par_node->set_attribute(
"AutoIndent", $a_char);
327 if ($this->par_node->has_attribute(
"AutoIndent"))
329 $this->par_node->remove_attribute(
"AutoIndent");
339 return $this->par_node->get_attribute(
"SubCharacteristic");
350 $this->par_node->set_attribute(
"DownloadTitle", $a_char);
354 if ($this->par_node->has_attribute(
"DownloadTitle"))
356 $this->par_node->remove_attribute(
"DownloadTitle");
366 return $this->par_node->get_attribute(
"DownloadTitle");
375 $a_char = empty($a_char)?
"n":$a_char;
377 $this->par_node->set_attribute(
"ShowLineNumbers", $a_char);
386 return $this->par_node->get_attribute(
"ShowLineNumbers");
394 $this->par_node->set_attribute(
"Language", $a_lang);
402 return $this->par_node->get_attribute(
"Language");
405 function input2xml($a_text, $a_wysiwyg = 0, $a_handle_lists =
true)
413 static function _input2xml($a_text, $a_lang, $a_wysiwyg = 0, $a_handle_lists =
true)
419 $a_text = trim($a_text);
424 $a_text = str_replace(
"&",
"&",$a_text);
425 $a_text = str_replace(
"<",
"<",$a_text);
426 $a_text = str_replace(
">",
">",$a_text);
429 $a_text = preg_replace(
'/<([\s\/]*?PageTurn.*?)>/i',
"<$1>",$a_text);
430 $a_text = preg_replace(
'/<([\s\/]*?BibItemIdentifier.*?)>/i',
"<$1>",$a_text);
441 $a_text = str_replace(chr(13).chr(10),
"<br />",$a_text);
442 $a_text = str_replace(chr(13),
"<br />", $a_text);
443 $a_text = str_replace(chr(10),
"<br />", $a_text);
451 $a_text = eregi_replace(
"\[com\]",
"<Comment Language=\"".$a_lang.
"\">",$a_text);
452 $a_text = eregi_replace(
"\[\/com\]",
"</Comment>",$a_text);
453 $a_text = eregi_replace(
"\[emp\]",
"<Emph>",$a_text);
454 $a_text = eregi_replace(
"\[\/emp\]",
"</Emph>",$a_text);
455 $a_text = eregi_replace(
"\[str\]",
"<Strong>",$a_text);
456 $a_text = eregi_replace(
"\[\/str\]",
"</Strong>",$a_text);
457 $a_text = eregi_replace(
"\[fn\]",
"<Footnote>",$a_text);
458 $a_text = eregi_replace(
"\[\/fn\]",
"</Footnote>",$a_text);
459 $a_text = eregi_replace(
"\[quot\]",
"<Quotation Language=\"".$a_lang.
"\">",$a_text);
460 $a_text = eregi_replace(
"\[\/quot\]",
"</Quotation>",$a_text);
461 $a_text = eregi_replace(
"\[code\]",
"<Code>",$a_text);
462 $a_text = eregi_replace(
"\[\/code\]",
"</Code>",$a_text);
463 $a_text = eregi_replace(
"\[acc\]",
"<Accent>",$a_text);
464 $a_text = eregi_replace(
"\[\/acc\]",
"</Accent>",$a_text);
465 $a_text = eregi_replace(
"\[imp\]",
"<Important>",$a_text);
466 $a_text = eregi_replace(
"\[\/imp\]",
"</Important>",$a_text);
467 $a_text = eregi_replace(
"\[kw\]",
"<Keyw>",$a_text);
468 $a_text = eregi_replace(
"\[\/kw\]",
"</Keyw>",$a_text);
472 $ws=
"[ \t\r\f\v\n]*";
474 while (eregi(
"\[(iln$ws((inst$ws=$ws([\"0-9])*)?$ws".
475 "((page|chap|term|media|htlm|lm|dbk|glo|frm|exc|tst|svy|webr|chat|cat|crs|grp|file|fold|sahs|mcst|obj)$ws=$ws([\"0-9])*)$ws".
476 "(target$ws=$ws(\"(New|FAQ|Media)\"))?$ws(anchor$ws=$ws(\"([^\"])*\"))?$ws))\]", $a_text, $found))
479 $inst_str = $attribs[
"inst"];
481 if (isset($attribs[
"page"]))
484 if (!empty($found[10]))
486 $tframestr =
" TargetFrame=\"".$found[10].
"\" ";
489 if ($attribs[
"anchor"] !=
"")
491 $ancstr =
' Anchor="'.$attribs[
"anchor"].
'" ';
493 $a_text = eregi_replace(
"\[".$found[1].
"\]",
494 "<IntLink Target=\"il_".$inst_str.
"_pg_".$attribs[page].
"\" Type=\"PageObject\"".$tframestr.$ancstr.
">", $a_text);
497 else if (isset($attribs[
"chap"]))
499 if (!empty($found[10]))
501 $tframestr =
" TargetFrame=\"".$found[10].
"\" ";
507 $a_text = eregi_replace(
"\[".$found[1].
"\]",
508 "<IntLink Target=\"il_".$inst_str.
"_st_".$attribs[chap].
"\" Type=\"StructureObject\"".$tframestr.
">", $a_text);
511 else if (isset($attribs[
"term"]))
516 $tframestr =
" TargetFrame=\"New\" ";
520 $tframestr =
" TargetFrame=\"Glossary\" ";
523 $a_text = eregi_replace(
"\[".$found[1].
"\]",
524 "<IntLink Target=\"il_".$inst_str.
"_git_".$attribs[term].
"\" Type=\"GlossaryItem\" $tframestr>", $a_text);
527 else if (isset($attribs[
"media"]))
529 if (!empty($found[10]))
531 $tframestr =
" TargetFrame=\"".$found[10].
"\" ";
532 $a_text = eregi_replace(
"\[".$found[1].
"\]",
533 "<IntLink Target=\"il_".$inst_str.
"_mob_".$attribs[media].
"\" Type=\"MediaObject\"".$tframestr.
">", $a_text);
537 $a_text = eregi_replace(
"\[".$found[1].
"\]",
538 "<IntLink Target=\"il_".$inst_str.
"_mob_".$attribs[media].
"\" Type=\"MediaObject\"/>", $a_text);
543 else if (isset($attribs[
"lm"]) || isset($attribs[
"dbk"]) || isset($attribs[
"glo"])
544 || isset($attribs[
"frm"]) || isset($attribs[
"exc"]) || isset($attribs[
"tst"])
545 || isset($attribs[
"svy"]) || isset($attribs[
"obj"]) || isset($attribs[
'webr'])
546 || isset($attribs[
"htlm"]) || isset($attribs[
"chat"]) || isset($attribs[
"grp"])
547 || isset($attribs[
"fold"]) || isset($attribs[
"sahs"]) || isset($attribs[
"mcst"])
548 || isset($attribs[
"cat"]) || isset($attribs[
"crs"]) || isset($attribs[
"file"]))
550 $obj_id = (isset($attribs[
"lm"])) ? $attribs[
"lm"] : $obj_id;
551 $obj_id = (isset($attribs[
"dbk"])) ? $attribs[
"dbk"] : $obj_id;
552 $obj_id = (isset($attribs[
"chat"])) ? $attribs[
"chat"] : $obj_id;
553 $obj_id = (isset($attribs[
"glo"])) ? $attribs[
"glo"] : $obj_id;
554 $obj_id = (isset($attribs[
"frm"])) ? $attribs[
"frm"] : $obj_id;
555 $obj_id = (isset($attribs[
"exc"])) ? $attribs[
"exc"] : $obj_id;
556 $obj_id = (isset($attribs[
"htlm"])) ? $attribs[
"htlm"] : $obj_id;
557 $obj_id = (isset($attribs[
"tst"])) ? $attribs[
"tst"] : $obj_id;
558 $obj_id = (isset($attribs[
"svy"])) ? $attribs[
"svy"] : $obj_id;
559 $obj_id = (isset($attribs[
"obj"])) ? $attribs[
"obj"] : $obj_id;
560 $obj_id = (isset($attribs[
"webr"])) ? $attribs[
"webr"] : $obj_id;
561 $obj_id = (isset($attribs[
"fold"])) ? $attribs[
"fold"] : $obj_id;
562 $obj_id = (isset($attribs[
"cat"])) ? $attribs[
"cat"] : $obj_id;
563 $obj_id = (isset($attribs[
"crs"])) ? $attribs[
"crs"] : $obj_id;
564 $obj_id = (isset($attribs[
"grp"])) ? $attribs[
"grp"] : $obj_id;
565 $obj_id = (isset($attribs[
"file"])) ? $attribs[
"file"] : $obj_id;
566 $obj_id = (isset($attribs[
"sahs"])) ? $attribs[
"sahs"] : $obj_id;
567 $obj_id = (isset($attribs[
"mcst"])) ? $attribs[
"mcst"] : $obj_id;
572 $a_text = eregi_replace(
"\[".$found[1].
"\]",
573 "<IntLink Target=\"il_".$inst_str.
"_obj_".$obj_id.
"\" Type=\"RepositoryItem\">", $a_text);
577 $a_text = eregi_replace(
"\[".$found[1].
"\]",
578 "<IntLink Target=\"il_".$inst_str.
"_".$found[6].
"_".$obj_id.
"\" Type=\"RepositoryItem\">", $a_text);
583 $a_text = eregi_replace(
"\[".$found[1].
"\]",
"[error: iln".$found[1].
"]",$a_text);
586 while (eregi(
"\[(iln$ws((inst$ws=$ws([\"0-9])*)?".$ws.
"media$ws=$ws([\"0-9])*)$ws)/\]", $a_text, $found))
589 $inst_str = $attribs[
"inst"];
590 $a_text = eregi_replace(
"\[".$found[1].
"/\]",
591 "<IntLink Target=\"il_".$inst_str.
"_mob_".$attribs[media].
"\" Type=\"MediaObject\"/>", $a_text);
593 $a_text = eregi_replace(
"\[\/iln\]",
"</IntLink>",$a_text);
596 $ws=
"[ \t\r\f\v\n]*";
597 while (eregi(
"\[(xln$ws(url$ws=$ws\"([^\"])*\")$ws(target$ws=$ws(\"(Glossary|FAQ|Media)\"))?$ws)\]", $a_text, $found))
600 if (isset($attribs[
"url"]))
604 if (in_array($a2[
"target"], array(
"FAQ",
"Glossary",
"Media")))
606 $tstr =
' TargetFrame="'.$a2[
"target"].
'"';
608 $a_text = str_replace(
"[".$found[1].
"]",
"<ExtLink Href=\"".$attribs[
"url"].
"\"$tstr>", $a_text);
612 $a_text = str_replace(
"[".$found[1].
"]",
"[error: xln".$found[1].
"]",$a_text);
615 $a_text = eregi_replace(
"\[\/xln\]",
"</ExtLink>",$a_text);
618 $ws=
"[ \t\r\f\v\n]*";
619 while (eregi(
"\[(anc$ws(name$ws=$ws\"([^\"])*\")$ws)\]", $a_text, $found))
622 $a_text = str_replace(
"[".$found[1].
"]",
"<Anchor Name=\"".$attribs[
"name"].
"\">", $a_text);
624 $a_text = eregi_replace(
"\[\/anc\]",
"</Anchor>",$a_text);
638 $rows = explode(
"<br />", $a_text.
"<br />");
645 foreach ($rows as
$row)
648 if (str_replace(
"#",
"*", substr($row, 0, 3)) ==
"***")
652 else if (str_replace(
"#",
"*", substr($row, 0, 2)) ==
"**")
656 else if (str_replace(
"#",
"*", substr($row, 0, 1)) ==
"*")
662 if ($level < $old_level)
664 for ($i = $old_level; $i > $level; $i--)
666 $text.=
"</SimpleListItem></".$clist[$i].
">";
670 $text.=
"</SimpleListItem>";
673 else if ($old_level > 0 && $level > 0 && ($level == $old_level))
675 $text.=
"</SimpleListItem>";
677 else if (($level == $old_level) && $text !=
"")
683 if ($level > $old_level)
685 for($i = $old_level + 1; $i <= $level; $i++)
687 if (substr($row, $i - 1, 1) ==
"*")
689 $clist[$i] =
"SimpleBulletList";
693 $clist[$i] =
"SimpleNumberedList";
695 $text.=
"<".$clist[$i].
"><SimpleListItem>";
698 else if ($old_level > 0 && $level > 0)
700 $text.=
"<SimpleListItem>";
702 $text.= substr($row, $level);
708 if (substr($text, strlen($text) - 6) ==
"<br />")
710 $text = substr($text, 0, strlen($text) - 6);
726 "</SimpleListItem>",
"<SimpleListItem>",
"<SimpleListItem/>",
"<SimpleNumberedList>",
"</SimpleNumberedList>"));
728 $current_list = array();
730 for ($i=0; $i<= count($segments); $i++)
732 if ($segments[$i] ==
"<SimpleBulletList>")
734 if (count($current_list) == 0)
738 array_push($current_list,
"*");
741 else if ($segments[$i] ==
"<SimpleNumberedList>")
743 if (count($current_list) == 0)
747 array_push($current_list,
"#");
750 else if ($segments[$i] ==
"</SimpleBulletList>")
752 array_pop($current_list);
755 else if ($segments[$i] ==
"</SimpleNumberedList>")
757 array_pop($current_list);
760 else if ($segments[$i] ==
"<SimpleListItem>")
764 else if ($segments[$i] ==
"</SimpleListItem>")
768 else if ($segments[$i] ==
"<SimpleListItem/>")
775 foreach($current_list as $list)
791 foreach($current_list as $list)
796 $text.= $segments[$i];
806 if ($segments[count($segments) - 1] ==
"</SimpleBulletList>" ||
807 $segments[count($segments) - 1] ==
"</SimpleNumberedList>" &&
808 substr($text, strlen($text) - 6) ==
"<br />")
810 $text = substr($text, 0, strlen($text) - 6);
823 $nothing_found =
false;
824 while (!$nothing_found)
826 $nothing_found =
true;
828 foreach($a_needles as $needle)
830 $pos = stripos($a_haystack, $needle);
831 if (is_int($pos) && ($pos < $found || $found == -1))
834 $found_needle = $needle;
835 $nothing_found =
false;
840 $segments[] = substr($a_haystack, 0, $found);
841 $a_haystack = substr($a_haystack, $found);
845 $segments[] = substr($a_haystack, 0, strlen($found_needle));
846 $a_haystack = substr($a_haystack, strlen($found_needle));
849 if ($a_haystack !=
"")
851 $segments[] = $a_haystack;
871 $a_text = eregi_replace(
"<Comment[^>]*>",
"[com]",$a_text);
872 $a_text = eregi_replace(
"</Comment>",
"[/com]",$a_text);
873 $a_text = eregi_replace(
"<Comment/>",
"[com][/com]",$a_text);
874 $a_text = eregi_replace(
"<Emph>",
"[emp]",$a_text);
875 $a_text = eregi_replace(
"</Emph>",
"[/emp]",$a_text);
876 $a_text = eregi_replace(
"<Emph/>",
"[emp][/emp]",$a_text);
877 $a_text = eregi_replace(
"<Strong>",
"[str]",$a_text);
878 $a_text = eregi_replace(
"</Strong>",
"[/str]",$a_text);
879 $a_text = eregi_replace(
"<Strong/>",
"[str][/str]",$a_text);
880 $a_text = eregi_replace(
"<Footnote[^>]*>",
"[fn]",$a_text);
881 $a_text = eregi_replace(
"</Footnote>",
"[/fn]",$a_text);
882 $a_text = eregi_replace(
"<Footnote/>",
"[fn][/fn]",$a_text);
883 $a_text = eregi_replace(
"<Quotation[^>]*>",
"[quot]",$a_text);
884 $a_text = eregi_replace(
"</Quotation>",
"[/quot]",$a_text);
885 $a_text = eregi_replace(
"<Quotation/>",
"[quot][/quot]",$a_text);
886 $a_text = eregi_replace(
"<Code[^>]*>",
"[code]",$a_text);
887 $a_text = eregi_replace(
"</Code>",
"[/code]",$a_text);
888 $a_text = eregi_replace(
"<Code/>",
"[code][/code]",$a_text);
889 $a_text = eregi_replace(
"<Accent>",
"[acc]",$a_text);
890 $a_text = eregi_replace(
"</Accent>",
"[/acc]",$a_text);
891 $a_text = eregi_replace(
"<Important>",
"[imp]",$a_text);
892 $a_text = eregi_replace(
"</Important>",
"[/imp]",$a_text);
893 $a_text = eregi_replace(
"<Keyw>",
"[kw]",$a_text);
894 $a_text = eregi_replace(
"</Keyw>",
"[/kw]",$a_text);
900 while (eregi(
"<IntLink($any)>", $a_text, $found))
904 $target = explode(
"_", $attribs[
"Target"]);
906 $inst_str = (!is_int(strpos($attribs[
"Target"],
"__")))
907 ? $inst_str =
"inst=\"".$target[1].
"\" "
909 switch($attribs[
"Type"])
912 $tframestr = (!empty($attribs[
"TargetFrame"]))
913 ?
" target=\"".$attribs[
"TargetFrame"].
"\""
915 $ancstr = (!empty($attribs[
"Anchor"]))
916 ?
' anchor="'.$attribs[
"Anchor"].
'"'
918 $a_text = eregi_replace(
"<IntLink".$found[1].
">",
"[iln ".$inst_str.
"page=\"".
$target_id.
"\"$tframestr$ancstr]",$a_text);
921 case "StructureObject":
922 $tframestr = (!empty($attribs[
"TargetFrame"]))
923 ?
" target=\"".$attribs[
"TargetFrame"].
"\""
925 $a_text = eregi_replace(
"<IntLink".$found[1].
">",
"[iln ".$inst_str.
"chap=\"".
$target_id.
"\"$tframestr]",$a_text);
929 $tframestr = (empty($attribs[
"TargetFrame"]) || $attribs[
"TargetFrame"] ==
"Glossary")
931 :
" target=\"".$attribs[
"TargetFrame"].
"\"";
932 $a_text = eregi_replace(
"<IntLink".$found[1].
">",
"[iln ".$inst_str.
"term=\"".
$target_id.
"\"".$tframestr.
"]",$a_text);
936 if (empty($attribs[
"TargetFrame"]))
938 $a_text = eregi_replace(
"<IntLink".$found[1].
">",
"[iln ".$inst_str.
"media=\"".
$target_id.
"\"/]",$a_text);
942 $a_text = eregi_replace(
"<IntLink".$found[1].
">",
"[iln media=\"".
$target_id.
"\"".
943 " target=\"".$attribs[
"TargetFrame"].
"\"]",$a_text);
947 case "RepositoryItem":
954 $rtype = $target[count($target) - 2];
957 $a_text = eregi_replace(
"<IntLink".$found[1].
">",
"[iln ".$inst_str.
"$target_type=\"".
$target_id.
"\"".$tframestr.
"]",$a_text);
961 $a_text = eregi_replace(
"<IntLink".$found[1].
">",
"[iln]",$a_text);
965 $a_text = eregi_replace(
"</IntLink>",
"[/iln]",$a_text);
968 while (eregi(
"<ExtLink($any)>", $a_text, $found))
974 if (in_array($attribs[
"TargetFrame"], array(
"FAQ",
"Glossary",
"Media")))
976 $tstr =
' target="'.$attribs[
"TargetFrame"].
'"';
978 $a_text = str_replace(
"<ExtLink".$found[1].
">",
"[xln url=\"".$attribs[
"Href"].
"\"$tstr]",$a_text);
980 $a_text = eregi_replace(
"</ExtLink>",
"[/xln]",$a_text);
983 while (eregi(
"<Anchor($any)>", $a_text, $found))
987 $a_text = str_replace(
"<Anchor".$found[1].
">",
"[anc name=\"".$attribs[
"Name"].
"\"]",$a_text);
989 $a_text = eregi_replace(
"</Anchor>",
"[/anc]",$a_text);
993 $a_text = str_replace(
"<br />",
"\n", $a_text);
994 $a_text = str_replace(
"<br/>",
"\n", $a_text);
997 $a_text = str_replace(
"{",
"{", $a_text);
998 $a_text = str_replace(
"}",
"}", $a_text);
1001 $a_text = str_replace(
"<",
"<", $a_text);
1002 $a_text = str_replace(
">",
">",$a_text);
1005 $a_text = str_replace(
""",
"\"", $a_text);
1009 $a_text = str_replace(
"&",
"&", $a_text);
1012 $a_text = str_replace(
"<",
"&lt;", $a_text);
1013 $a_text = str_replace(
">",
"&gt;", $a_text);
1027 $a_text = str_replace (
"=<SimpleBulletList>",
"=<br /><SimpleBulletList>", $a_text);
1028 $a_text = str_replace (
"=<SimpleNumberedList>",
"=<br /><SimpleNumberedList>", $a_text);
1029 $a_text = str_replace (
"</SimpleBulletList>=",
"</SimpleBulletList><br />=", $a_text);
1030 $a_text = str_replace (
"</SimpleNumberedList>=",
"</SimpleNumberedList><br />=", $a_text);
1031 $a_text =
"<br />".$a_text.
"<br />";
1036 while ($c_text !=
"")
1040 $s1 = strpos($c_text,
"<br />=");
1044 $s2 = strpos($c_text,
"<br />==");
1045 if (is_int($s2) && $s2 <= $s1)
1048 $s3 = strpos($c_text,
"<br />===");
1049 if (is_int($s3) && $s3 <= $s2)
1052 $n = strpos($c_text,
"<br />", $s3 + 1);
1053 if (
$n > ($s3+9) && substr($c_text,
$n-3, 9) ==
"===<br />")
1057 if ($s3 > 0 || $head !=
"")
1060 $chunks[] = array(
"level" => 0,
1064 $chunks[] = array(
"level" => 3,
1065 "text" => trim(substr($c_text, $s3+9,
$n-$s3-12)));
1071 $head.= substr($c_text, 0,
$n);
1072 $c_text = substr($c_text,
$n);
1078 $n = strpos($c_text,
"<br />", $s2 + 1);
1079 if (
$n > ($s2+8) && substr($c_text,
$n-2, 8) ==
"==<br />")
1083 if ($s2 > 0 || $head !=
"")
1086 $chunks[] = array(
"level" => 0,
1090 $chunks[] = array(
"level" => 2,
"text" => trim(substr($c_text, $s2+8,
$n-$s2-10)));
1096 $head.= substr($c_text, 0,
$n);
1097 $c_text = substr($c_text,
$n);
1104 $n = strpos($c_text,
"<br />", $s1 + 1);
1105 if (
$n > ($s1+7) && substr($c_text,
$n-1, 7) ==
"=<br />")
1109 if ($s1 > 0 || $head !=
"")
1112 $chunks[] = array(
"level" => 0,
1116 $chunks[] = array(
"level" => 1,
"text" => trim(substr($c_text, $s1+7,
$n-$s1-8)));
1122 $head.= substr($c_text, 0,
$n);
1123 $c_text = substr($c_text,
$n);
1131 $chunks[] = array(
"level" => 0,
"text" => $head.$c_text);
1136 if (count($chunks) == 0)
1138 $chunks[] = array(
"level" => 0,
"text" =>
"");
1143 if (substr($chunks[0][
"text"], 0, 6) ==
"<br />")
1145 $chunks[0][
"text"] = substr($chunks[0][
"text"], 6);
1149 if (substr($chunks[count($chunks) - 1][
"text"],
1150 strlen($chunks[count($chunks) - 1][
"text"]) - 6, 6) ==
"<br />")
1152 $chunks[count($chunks) - 1][
"text"] =
1153 substr($chunks[count($chunks) - 1][
"text"], 0, strlen($chunks[count($chunks) - 1][
"text"]) - 6);
1154 if ($chunks[count($chunks) - 1][
"text"] ==
"")
1156 unset($chunks[count($chunks) - 1]);
1169 if (substr($a_str, 0, 6) ==
"<br />" && substr($a_str, 6, 1) !=
"=")
1171 $a_str = substr($a_str, 6);
1177 if (substr($a_str, 0, 1) ==
"=")
1179 $a_str =
"<br />".$a_str;
1190 if (substr($a_str, strlen($a_str) - 6) ==
"<br />")
1192 $a_str = substr($a_str, 0, strlen($a_str) - 6);