2012-07-02 08:00:25 +02:00
|
|
|
<?php
|
2018-01-21 19:33:59 +01:00
|
|
|
/**
|
|
|
|
* @file mod/babel.php
|
|
|
|
*/
|
2018-02-15 03:33:55 +01:00
|
|
|
|
2018-03-07 22:24:13 +01:00
|
|
|
use Friendica\Content\Text;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-09-16 15:07:17 +02:00
|
|
|
function visible_whitespace($s)
|
2018-01-05 01:42:48 +01:00
|
|
|
{
|
2018-09-16 15:07:17 +02:00
|
|
|
$s = str_replace(' ', ' ', $s);
|
|
|
|
|
2018-09-18 05:18:34 +02:00
|
|
|
return str_replace(["\r\n", "\n", "\r"], '<br />', $s);
|
2012-07-02 08:00:25 +02:00
|
|
|
}
|
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
function babel_content()
|
|
|
|
{
|
2018-03-09 05:48:32 +01:00
|
|
|
$results = [];
|
|
|
|
if (!empty($_REQUEST['text'])) {
|
2018-03-09 13:58:46 +01:00
|
|
|
switch (defaults($_REQUEST, 'type', 'bbcode')) {
|
2018-03-09 05:48:32 +01:00
|
|
|
case 'bbcode':
|
|
|
|
$bbcode = trim($_REQUEST['text']);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('Source input'),
|
2018-09-16 15:07:17 +02:00
|
|
|
'content' => visible_whitespace($bbcode)
|
2018-03-09 05:48:32 +01:00
|
|
|
];
|
|
|
|
|
2018-04-22 00:48:10 +02:00
|
|
|
$plain = Text\BBCode::toPlaintext($bbcode, false);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('BBCode::toPlaintext'),
|
2018-09-16 15:07:17 +02:00
|
|
|
'content' => visible_whitespace($plain)
|
2018-04-22 00:48:10 +02:00
|
|
|
];
|
|
|
|
|
2018-03-09 05:48:32 +01:00
|
|
|
$html = Text\BBCode::convert($bbcode);
|
|
|
|
$results[] = [
|
2018-09-16 15:07:17 +02:00
|
|
|
'title' => L10n::t('BBCode::convert (raw HTML)'),
|
|
|
|
'content' => visible_whitespace(htmlspecialchars($html))
|
2018-03-09 05:48:32 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('BBCode::convert'),
|
|
|
|
'content' => $html
|
|
|
|
];
|
|
|
|
|
|
|
|
$bbcode2 = Text\HTML::toBBCode($html);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('BBCode::convert => HTML::toBBCode'),
|
2018-09-16 15:07:17 +02:00
|
|
|
'content' => visible_whitespace($bbcode2)
|
2018-03-09 05:48:32 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
$markdown = Text\BBCode::toMarkdown($bbcode);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('BBCode::toMarkdown'),
|
2018-09-16 15:07:17 +02:00
|
|
|
'content' => visible_whitespace($markdown)
|
2018-03-09 05:48:32 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
$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'),
|
2018-09-16 15:07:17 +02:00
|
|
|
'content' => visible_whitespace($bbcode3)
|
2018-03-09 05:48:32 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
$bbcode4 = Text\HTML::toBBCode($html2);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('BBCode::toMarkdown => Markdown::convert => HTML::toBBCode'),
|
2018-09-16 15:07:17 +02:00
|
|
|
'content' => visible_whitespace($bbcode4)
|
2018-03-09 05:48:32 +01:00
|
|
|
];
|
|
|
|
break;
|
|
|
|
case 'markdown':
|
|
|
|
$markdown = trim($_REQUEST['text']);
|
|
|
|
$results[] = [
|
2018-09-16 15:07:17 +02:00
|
|
|
'title' => L10n::t('Source input (Diaspora format)'),
|
2018-03-09 05:48:32 +01:00
|
|
|
'content' => '<pre>' . $markdown . '</pre>'
|
|
|
|
];
|
|
|
|
|
2018-09-16 15:07:17 +02:00
|
|
|
$html = Text\Markdown::convert($markdown);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('Markdown::convert (raw HTML)'),
|
|
|
|
'content' => htmlspecialchars($html)
|
|
|
|
];
|
|
|
|
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('Markdown::convert'),
|
|
|
|
'content' => $html
|
|
|
|
];
|
|
|
|
|
2018-03-09 05:48:32 +01:00
|
|
|
$bbcode = Text\Markdown::toBBCode($markdown);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('Markdown::toBBCode'),
|
|
|
|
'content' => '<pre>' . $bbcode . '</pre>'
|
|
|
|
];
|
|
|
|
break;
|
|
|
|
case 'html' :
|
|
|
|
$html = trim($_REQUEST['text']);
|
|
|
|
$results[] = [
|
2018-09-16 15:07:17 +02:00
|
|
|
'title' => L10n::t('Raw HTML input'),
|
2018-03-09 05:48:32 +01:00
|
|
|
'content' => htmlspecialchars($html)
|
|
|
|
];
|
|
|
|
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('HTML Input'),
|
|
|
|
'content' => $html
|
|
|
|
];
|
|
|
|
|
|
|
|
$bbcode = Text\HTML::toBBCode($html);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('HTML::toBBCode'),
|
2018-09-16 15:07:17 +02:00
|
|
|
'content' => visible_whitespace($bbcode)
|
2018-03-09 05:48:32 +01:00
|
|
|
];
|
|
|
|
|
2018-10-14 13:44:07 +02:00
|
|
|
$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)
|
|
|
|
];
|
|
|
|
|
2018-09-18 05:18:34 +02:00
|
|
|
$markdown = Text\HTML::toMarkdown($html);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('HTML::toMarkdown'),
|
|
|
|
'content' => visible_whitespace($markdown)
|
|
|
|
];
|
|
|
|
|
2018-03-09 05:48:32 +01:00
|
|
|
$text = Text\HTML::toPlaintext($html);
|
|
|
|
$results[] = [
|
|
|
|
'title' => L10n::t('HTML::toPlaintext'),
|
|
|
|
'content' => '<pre>' . $text . '</pre>'
|
|
|
|
];
|
|
|
|
}
|
2012-07-02 08:00:25 +02:00
|
|
|
}
|
2012-07-13 07:12:48 +02:00
|
|
|
|
2018-03-09 05:48:32 +01:00
|
|
|
$tpl = get_markup_template('babel.tpl');
|
|
|
|
$o = replace_macros($tpl, [
|
2018-09-18 05:18:34 +02:00
|
|
|
'$text' => ['text', L10n::t('Source text'), htmlentities(defaults($_REQUEST, 'text', '')), ''],
|
2018-03-09 13:58:46 +01:00
|
|
|
'$type_bbcode' => ['type', L10n::t('BBCode'), 'bbcode', '', defaults($_REQUEST, 'type', 'bbcode') == 'bbcode'],
|
2018-03-09 05:48:32 +01:00
|
|
|
'$type_markdown' => ['type', L10n::t('Markdown'), 'markdown', '', defaults($_REQUEST, 'type', 'bbcode') == 'markdown'],
|
2018-03-09 13:58:46 +01:00
|
|
|
'$type_html' => ['type', L10n::t('HTML'), 'html', '', defaults($_REQUEST, 'type', 'bbcode') == 'html'],
|
|
|
|
'$results' => $results
|
2018-03-09 05:48:32 +01:00
|
|
|
]);
|
2012-07-13 07:12:48 +02:00
|
|
|
|
2012-07-02 08:00:25 +02:00
|
|
|
return $o;
|
|
|
|
}
|