aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-01 23:00:25 -0700
committerfriendica <info@friendica.com>2012-07-01 23:00:25 -0700
commita9c65dfe2725fd18d2fb1f593f9ffb9841729a96 (patch)
tree08cd7917fefe59e44e8c8abe684ee7a63065dc35 /mod
parentab2b3304dc7c30f65297d398661b1eccb2723685 (diff)
downloadvolse-hubzilla-a9c65dfe2725fd18d2fb1f593f9ffb9841729a96.tar.gz
volse-hubzilla-a9c65dfe2725fd18d2fb1f593f9ffb9841729a96.tar.bz2
volse-hubzilla-a9c65dfe2725fd18d2fb1f593f9ffb9841729a96.zip
"babel" diagnostic - convert bbcode to different formats and back again
Diffstat (limited to 'mod')
-rw-r--r--mod/babel.php56
1 files changed, 56 insertions, 0 deletions
diff --git a/mod/babel.php b/mod/babel.php
new file mode 100644
index 000000000..9d87b47f0
--- /dev/null
+++ b/mod/babel.php
@@ -0,0 +1,56 @@
+<?php
+
+require_once('include/bbcode.php');
+require_once('library/markdown.php');
+require_once('include/bb2diaspora.php');
+require_once('include/html2bbcode.php');
+
+function visible_lf($s) {
+ return str_replace("\n",'<br />', $s);
+}
+
+function babel_content(&$a) {
+
+ $o .= '<h3>Babel Diagnostic</h3>';
+
+ $o .= '<form action="babel" method="post">';
+ $o .= t('Source (bbcode) text:') . EOL . '<textarea name="text" >' . htmlspecialchars($_REQUEST['text']) .'</textarea>' . EOL;
+ $o .= '<input type="submit" name="submit" value="Submit" /></form>';
+
+ $o .= '<br /><br />';
+
+ 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;
+
+ $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 .= $bbcode . EOL. EOL;
+
+ $bbcode = html2bbcode($html);
+ $o .= t("bb2md2html2bb: ") . EOL. EOL;
+ $o .= $bbcode . EOL. EOL;
+
+
+
+ }
+ return $o;
+}