X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fbabel.php;h=3b4fb5bf2bfcd018a332ca887295465c57a69e36;hb=6ef2fd56f78b3bfe1df59bbd35bd9fdb547b3291;hp=5129f5bf594422486c23579e2b977555b39e48a8;hpb=b6d11f21297331cda361ebadca3c1cf453027fdd;p=friendica.git diff --git a/mod/babel.php b/mod/babel.php index 5129f5bf59..3b4fb5bf2b 100644 --- a/mod/babel.php +++ b/mod/babel.php @@ -1,78 +1,79 @@ ', $s); +/** + * @file mod/babel.php + */ +use Friendica\Content\Text\Markdown; +use Friendica\Core\L10n; + +require_once 'include/bbcode.php'; +require_once 'include/bb2diaspora.php'; +require_once 'include/html2bbcode.php'; + +function visible_lf($s) +{ + return str_replace("\n", '
', $s); } -function babel_content(App &$a) { - - $o .= '

Babel Diagnostic

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

Babel Diagnostic

'; $o .= '
'; - $o .= t('Source (bbcode) text:') . EOL . '' . EOL; - $o .= '
'; + $o .= L10n::t("Source \x28bbcode\x29 text:") . EOL; + $o .= '' . EOL; + $o .= ''; $o .= '

'; $o .= '
'; - $o .= t('Source (Diaspora) text to convert to BBcode:') . EOL . '' . EOL; - $o .= '
'; + $o .= L10n::t("Source \x28Diaspora\x29 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 .= '

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

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

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

" . EOL. EOL; - $o .= htmlspecialchars($html). EOL. EOL; + $o .= '

' . L10n::t("bbcode \x28raw HTML\x28: ") . '

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

" . t("bb2html: ") . "

" . EOL. EOL; - $o .= $html. EOL. EOL; + $o .= '

' . L10n::t('bbcode: ') . '

' . EOL . EOL; + $o .= $html . EOL . EOL; $bbcode = html2bbcode($html); - $o .= "

" . t("bb2html2bb: ") . "

" . EOL. EOL; - $o .= visible_lf($bbcode) . EOL. EOL; + $o .= '

' . L10n::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 .= '

' . L10n::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 .= '

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

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

" . t("bb2dia2bb: ") . "

" . EOL. EOL; - $o .= visible_lf($bbcode) . EOL. EOL; + $o .= '

' . L10n::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 .= '

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

' . 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 .= '

' . L10n::t("Source input \x28Diaspora format\x29: ") . '

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

" . t("diaspora2bb: ") . "

" . EOL. EOL; - $o .= visible_lf($bb) . EOL. EOL; + $o .= '

' . L10n::t('diaspora2bb: ') . '

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