X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fbabel.php;h=0e38dc5750ab41e5ae456418e3f0fa46ca2531c2;hb=3359f3f5c7ecc4b6a34c4fcfc095ab4dd5fab0f1;hp=ca2c068f8e2fcbd561ff9044fe6591e18f02bb29;hpb=2bdbdc8d8ef229946e225791801e753a7fd5c695;p=friendica.git diff --git a/mod/babel.php b/mod/babel.php index ca2c068f8e..0e38dc5750 100644 --- a/mod/babel.php +++ b/mod/babel.php @@ -1,74 +1,75 @@ ', $s); + return str_replace("\n", '
', $s); } -function babel_content(&$a) { - - $o .= '

Babel Diagnostic

'; +function babel_content(App $a) { + $o .= '

Babel Diagnostic

'; $o .= '
'; - $o .= t('Source (bbcode) text:') . EOL . '' . EOL; - $o .= '
'; + $o .= t('Source (bbcode) text:') . EOL; + $o .= '' . EOL; + $o .= ''; $o .= '

'; $o .= '
'; - $o .= t('Source (Diaspora) text to convert to BBcode:') . EOL . '' . EOL; - $o .= '
'; + $o .= t('Source (Diaspora) text to convert to BBcode:') . EOL; + $o .= '' . EOL; + $o .= ''; $o .= '

'; - if(x($_REQUEST,'text')) { - + if (x($_REQUEST, 'text')) { $text = trim($_REQUEST['text']); - $o .= t("Source input: ") . EOL. EOL; - $o .= visible_lf($text) . EOL. EOL; + $o .= '

' . t('Source input: ') . '

' . EOL. EOL; + $o .= visible_lf($text) . EOL. EOL; $html = bbcode($text); - $o .= t("bb2html: ") . EOL. EOL; - $o .= $html. EOL. EOL; + $o .= '

' . t('bb2html (raw HTML): ') . '

' . EOL. EOL; + $o .= htmlspecialchars($html). EOL. EOL; + + //$html = bbcode($text); + $o .= '

' . t('bb2html: ') . '

' . EOL. EOL; + $o .= $html. EOL. EOL; $bbcode = html2bbcode($html); - $o .= t("bb2html2bb: ") . EOL. EOL; - $o .= visible_lf($bbcode) . EOL. EOL; + $o .= '

' . t('bb2html2bb: ') . '

' . EOL. EOL; + $o .= visible_lf($bbcode) . EOL. EOL; $diaspora = bb2diaspora($text); - $o .= t("bb2md: ") . EOL. EOL; - $o .= visible_lf($diaspora) . EOL. EOL; + $o .= '

' . t('bb2md: ') . '

' . EOL. EOL; + $o .= visible_lf($diaspora) . EOL. EOL; $html = Markdown($diaspora); - $o .= t("bb2md2html: ") . EOL. EOL; - $o .= $html. EOL. EOL; + $o .= '

' . t('bb2md2html: ') . '

' . EOL. EOL; + $o .= $html. EOL. EOL; $bbcode = diaspora2bb($diaspora); - $o .= t("bb2dia2bb: ") . EOL. EOL; - $o .= visible_lf($bbcode) . EOL. EOL; + $o .= '

' . t('bb2dia2bb: ') . '

' . EOL. EOL; + $o .= visible_lf($bbcode) . EOL. EOL; $bbcode = html2bbcode($html); - $o .= t("bb2md2html2bb: ") . EOL. EOL; - $o .= visible_lf($bbcode) . EOL. EOL; - - - + $o .= '

' . t('bb2md2html2bb: ') . '

' . EOL. EOL; + $o .= visible_lf($bbcode) . EOL. EOL; } - if(x($_REQUEST,'d2bbtext')) { - + if (x($_REQUEST, 'd2bbtext')) { $d2bbtext = trim($_REQUEST['d2bbtext']); - $o .= t("Source input (Diaspora format): ") . EOL. EOL; - $o .= visible_lf($d2bbtext) . EOL. EOL; - + $o .= '

' . t('Source input (Diaspora format): ') . '

' . EOL. EOL; + $o .= '
' . $d2bbtext . '
' . EOL. EOL; $bb = diaspora2bb($d2bbtext); - $o .= t("diaspora2bb: ") . EOL. EOL; - $o .= visible_lf($bb) . EOL. EOL; + $o .= '

' . t('diaspora2bb: ') . '

' . EOL. EOL; + $o .= '
' . $bb . '
' . EOL. EOL; } return $o;