X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fbabel.php;h=64c9557767d278d7a6122019dbd6016f4c3087d0;hb=761e94d134cf841a013127ba5070dcba525e0c6d;hp=1c881a5bd2fb54f0c74fc7ac10262fb2c171d4d2;hpb=ba4db236ecff1ffdb56adc2715b3f53515f8cb34;p=friendica.git diff --git a/mod/babel.php b/mod/babel.php index 1c881a5bd2..64c9557767 100644 --- a/mod/babel.php +++ b/mod/babel.php @@ -1,56 +1,153 @@ ', $s); -} - -function babel_content(&$a) { - - $o .= '

Babel Diagnostic

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

'; - - if(x($_REQUEST,'text')) { - - $text = trim($_REQUEST['text']); - $o .= t("Source input: ") . EOL. EOL; - $o .= visible_lf($text) . EOL. EOL; - - $html = bbcode($text); - $o .= t("bb2html: ") . EOL. EOL; - $o .= $html. EOL. EOL; +function visible_whitespace($s) +{ + $s = str_replace(' ', ' ', $s); - $bbcode = html2bbcode($html); - $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; - - $html = Markdown($diaspora); - $o .= t("bb2md2html: ") . EOL. EOL; - $o .= $html. EOL. EOL; - - $bbcode = diaspora2bb($diaspora); - $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; + return str_replace(["\r\n", "\n", "\r"], '
', $s); +} +function babel_content() +{ + $results = []; + if (!empty($_REQUEST['text'])) { + switch (defaults($_REQUEST, 'type', 'bbcode')) { + case 'bbcode': + $bbcode = trim($_REQUEST['text']); + $results[] = [ + 'title' => L10n::t('Source input'), + 'content' => visible_whitespace($bbcode) + ]; + + $plain = Text\BBCode::toPlaintext($bbcode, false); + $results[] = [ + 'title' => L10n::t('BBCode::toPlaintext'), + 'content' => visible_whitespace($plain) + ]; + + $html = Text\BBCode::convert($bbcode); + $results[] = [ + 'title' => L10n::t('BBCode::convert (raw HTML)'), + 'content' => visible_whitespace(htmlspecialchars($html)) + ]; + + $results[] = [ + 'title' => L10n::t('BBCode::convert'), + 'content' => $html + ]; + + $bbcode2 = Text\HTML::toBBCode($html); + $results[] = [ + 'title' => L10n::t('BBCode::convert => HTML::toBBCode'), + 'content' => visible_whitespace($bbcode2) + ]; + + $markdown = Text\BBCode::toMarkdown($bbcode); + $results[] = [ + 'title' => L10n::t('BBCode::toMarkdown'), + 'content' => visible_whitespace($markdown) + ]; + + $html2 = Text\Markdown::convert($markdown); + $results[] = [ + 'title' => L10n::t('BBCode::toMarkdown => Markdown::convert'), + 'content' => $html2 + ]; + + $bbcode3 = Text\Markdown::toBBCode($markdown); + $results[] = [ + 'title' => L10n::t('BBCode::toMarkdown => Markdown::toBBCode'), + 'content' => visible_whitespace($bbcode3) + ]; + + $bbcode4 = Text\HTML::toBBCode($html2); + $results[] = [ + 'title' => L10n::t('BBCode::toMarkdown => Markdown::convert => HTML::toBBCode'), + 'content' => visible_whitespace($bbcode4) + ]; + break; + case 'markdown': + $markdown = trim($_REQUEST['text']); + $results[] = [ + 'title' => L10n::t('Source input (Diaspora format)'), + 'content' => '
' . $markdown . '
' + ]; + + $html = Text\Markdown::convert($markdown); + $results[] = [ + 'title' => L10n::t('Markdown::convert (raw HTML)'), + 'content' => htmlspecialchars($html) + ]; + + $results[] = [ + 'title' => L10n::t('Markdown::convert'), + 'content' => $html + ]; + + $bbcode = Text\Markdown::toBBCode($markdown); + $results[] = [ + 'title' => L10n::t('Markdown::toBBCode'), + 'content' => '
' . $bbcode . '
' + ]; + break; + case 'html' : + $html = trim($_REQUEST['text']); + $results[] = [ + 'title' => L10n::t('Raw HTML input'), + 'content' => htmlspecialchars($html) + ]; + + $results[] = [ + 'title' => L10n::t('HTML Input'), + 'content' => $html + ]; + + $bbcode = Text\HTML::toBBCode($html); + $results[] = [ + 'title' => L10n::t('HTML::toBBCode'), + 'content' => visible_whitespace($bbcode) + ]; + + $html2 = Text\BBCode::convert($bbcode); + $results[] = [ + 'title' => L10n::t('HTML::toBBCode => BBCode::convert'), + 'content' => $html2 + ]; + + $results[] = [ + 'title' => L10n::t('HTML::toBBCode => BBCode::convert (raw HTML)'), + 'content' => htmlspecialchars($html2) + ]; + + $markdown = Text\HTML::toMarkdown($html); + $results[] = [ + 'title' => L10n::t('HTML::toMarkdown'), + 'content' => visible_whitespace($markdown) + ]; + + $text = Text\HTML::toPlaintext($html); + $results[] = [ + 'title' => L10n::t('HTML::toPlaintext'), + 'content' => '
' . $text . '
' + ]; + } + } + $tpl = Renderer::getMarkupTemplate('babel.tpl'); + $o = Renderer::replaceMacros($tpl, [ + '$text' => ['text', L10n::t('Source text'), defaults($_REQUEST, 'text', ''), ''], + '$type_bbcode' => ['type', L10n::t('BBCode'), 'bbcode', '', defaults($_REQUEST, 'type', 'bbcode') == 'bbcode'], + '$type_markdown' => ['type', L10n::t('Markdown'), 'markdown', '', defaults($_REQUEST, 'type', 'bbcode') == 'markdown'], + '$type_html' => ['type', L10n::t('HTML'), 'html', '', defaults($_REQUEST, 'type', 'bbcode') == 'html'], + '$results' => $results + ]); - } return $o; }