X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fbabel.php;h=a4fbd172eed6282015c2c3d7a0720fe9738b73cf;hb=391c5913227c7f62f19b4f08906b0b1b0b618b33;hp=1c881a5bd2fb54f0c74fc7ac10262fb2c171d4d2;hpb=64fc1318c68e55f3ba3cf393c32d6d8d12cd51d5;p=friendica.git diff --git a/mod/babel.php b/mod/babel.php index 1c881a5bd2..a4fbd172ee 100644 --- a/mod/babel.php +++ b/mod/babel.php @@ -1,56 +1,78 @@ ', $s); -} +require_once 'include/bbcode.php'; +require_once 'include/bb2diaspora.php'; +require_once 'include/html2bbcode.php'; +require_once 'include/pgettext.php'; -function babel_content(&$a) { +function visible_lf($s) +{ + return str_replace("\n", '
', $s); +} - $o .= '

Babel Diagnostic

'; +function babel_content() +{ + $o = '

Babel Diagnostic

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

'; - if(x($_REQUEST,'text')) { + $o .= '
'; + $o .= t('Source (Diaspora) text to convert to BBcode:') . EOL; + $o .= '' . EOL; + $o .= '
'; + + $o .= '

'; + 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('bbcode (raw HTML): ') . '

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

' . t('bbcode: ') . '

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

' . t('bbcode => html2bbcode: ') . '

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

' . t('bb2diaspora: ') . '

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

' . t('bb2diaspora => Markdown: ') . '

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

' . t('bb2diaspora => diaspora2bb: ') . '

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

' . t('bbcode => html2bbcode: ') . '

' . EOL . EOL; + $o .= visible_lf($bbcode) . EOL . EOL; + } + if (x($_REQUEST, 'd2bbtext')) { + $d2bbtext = trim($_REQUEST['d2bbtext']); + $o .= '

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

' . EOL . EOL; + $o .= '
' . $d2bbtext . '
' . EOL . EOL; + $bb = diaspora2bb($d2bbtext); + $o .= '

' . t('diaspora2bb: ') . '

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