Update references to bb2diaspora and diaspora2bb

This commit is contained in:
Hypolite Petovan 2018-03-04 17:39:41 -05:00
parent fe5ce67ef8
commit 26ea6f69d7
2 changed files with 19 additions and 17 deletions

View File

@ -49,7 +49,7 @@ function babel_content()
$o .= '<h2>' . L10n::t('bbcode => html2bbcode: ') . '</h2>' . EOL . EOL; $o .= '<h2>' . L10n::t('bbcode => html2bbcode: ') . '</h2>' . EOL . EOL;
$o .= visible_lf($bbcode) . EOL . EOL; $o .= visible_lf($bbcode) . EOL . EOL;
$diaspora = bb2diaspora($text); $diaspora = BBCode::toMarkdown($text);
$o .= '<h2>' . L10n::t('bb2diaspora: ') . '</h2>' . EOL . EOL; $o .= '<h2>' . L10n::t('bb2diaspora: ') . '</h2>' . EOL . EOL;
$o .= visible_lf($diaspora) . EOL . EOL; $o .= visible_lf($diaspora) . EOL . EOL;
@ -57,7 +57,7 @@ function babel_content()
$o .= '<h2>' . L10n::t('bb2diaspora => Markdown: ') . '</h2>' . EOL . EOL; $o .= '<h2>' . L10n::t('bb2diaspora => Markdown: ') . '</h2>' . EOL . EOL;
$o .= $html . EOL . EOL; $o .= $html . EOL . EOL;
$bbcode = diaspora2bb($diaspora); $bbcode = Markdown::toBBCode($diaspora);
$o .= '<h2>' . L10n::t('bb2diaspora => diaspora2bb: ') . '</h2>' . EOL . EOL; $o .= '<h2>' . L10n::t('bb2diaspora => diaspora2bb: ') . '</h2>' . EOL . EOL;
$o .= visible_lf($bbcode) . EOL . EOL; $o .= visible_lf($bbcode) . EOL . EOL;
@ -71,7 +71,7 @@ function babel_content()
$o .= '<h2>' . L10n::t("Source input \x28Diaspora format\x29: ") . '</h2>' . EOL . EOL; $o .= '<h2>' . L10n::t("Source input \x28Diaspora format\x29: ") . '</h2>' . EOL . EOL;
$o .= '<pre>' . $d2bbtext . '</pre>' . EOL . EOL; $o .= '<pre>' . $d2bbtext . '</pre>' . EOL . EOL;
$bb = diaspora2bb($d2bbtext); $bb = Markdown::toBBCode($d2bbtext);
$o .= '<h2>' . L10n::t('diaspora2bb: ') . '</h2>' . EOL . EOL; $o .= '<h2>' . L10n::t('diaspora2bb: ') . '</h2>' . EOL . EOL;
$o .= '<pre>' . $bb . '</pre>' . EOL . EOL; $o .= '<pre>' . $bb . '</pre>' . EOL . EOL;
} }

View File

@ -7,9 +7,11 @@
* This implementation here interprets the old and the new protocol and sends the new one. * This implementation here interprets the old and the new protocol and sends the new one.
* In the future we will remove most stuff from "validPosting" and interpret only the new protocol. * In the future we will remove most stuff from "validPosting" and interpret only the new protocol.
*/ */
namespace Friendica\Protocol; namespace Friendica\Protocol;
use Friendica\Content\Text\BBCode; use Friendica\Content\Text\BBCode;
use Friendica\Content\Text\Markdown;
use Friendica\Core\Cache; use Friendica\Core\Cache;
use Friendica\Core\Config; use Friendica\Core\Config;
use Friendica\Core\L10n; use Friendica\Core\L10n;
@ -1729,7 +1731,7 @@ class Diaspora
$datarray["plink"] = self::plink($author, $guid, $parent_item['guid']); $datarray["plink"] = self::plink($author, $guid, $parent_item['guid']);
$body = diaspora2bb($text); $body = Markdown::toBBCode($text);
$datarray["body"] = self::replacePeopleGuid($body, $person["url"]); $datarray["body"] = self::replacePeopleGuid($body, $person["url"]);
@ -1796,7 +1798,7 @@ class Diaspora
return false; return false;
} }
$body = diaspora2bb($msg_text); $body = Markdown::toBBCode($msg_text);
$message_uri = $msg_author.":".$msg_guid; $message_uri = $msg_author.":".$msg_guid;
$person = self::personByHandle($msg_author); $person = self::personByHandle($msg_author);
@ -2130,7 +2132,7 @@ class Diaspora
return false; return false;
} }
$body = diaspora2bb($text); $body = Markdown::toBBCode($text);
$body = self::replacePeopleGuid($body, $person["url"]); $body = self::replacePeopleGuid($body, $person["url"]);
@ -2282,8 +2284,8 @@ class Diaspora
$image_url = unxmlify($data->image_url); $image_url = unxmlify($data->image_url);
$birthday = unxmlify($data->birthday); $birthday = unxmlify($data->birthday);
$gender = unxmlify($data->gender); $gender = unxmlify($data->gender);
$about = diaspora2bb(unxmlify($data->bio)); $about = Markdown::toBBCode(unxmlify($data->bio));
$location = diaspora2bb(unxmlify($data->location)); $location = Markdown::toBBCode(unxmlify($data->location));
$searchable = (unxmlify($data->searchable) == "true"); $searchable = (unxmlify($data->searchable) == "true");
$nsfw = (unxmlify($data->nsfw) == "true"); $nsfw = (unxmlify($data->nsfw) == "true");
$tags = unxmlify($data->tag_string); $tags = unxmlify($data->tag_string);
@ -2660,7 +2662,7 @@ class Diaspora
if (self::isReshare($r[0]["body"], true)) { if (self::isReshare($r[0]["body"], true)) {
$r = []; $r = [];
} elseif (self::isReshare($r[0]["body"], false) || strstr($r[0]["body"], "[share")) { } elseif (self::isReshare($r[0]["body"], false) || strstr($r[0]["body"], "[share")) {
$r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"])); $r[0]["body"] = Markdown::toBBCode(BBCode::toMarkdown($r[0]["body"]));
$r[0]["body"] = self::replacePeopleGuid($r[0]["body"], $r[0]["author-link"]); $r[0]["body"] = self::replacePeopleGuid($r[0]["body"], $r[0]["author-link"]);
@ -2695,7 +2697,7 @@ class Diaspora
if (DBM::is_result($r)) { if (DBM::is_result($r)) {
// If it is a reshared post from another network then reformat to avoid display problems with two share elements // If it is a reshared post from another network then reformat to avoid display problems with two share elements
if (self::isReshare($r[0]["body"], false)) { if (self::isReshare($r[0]["body"], false)) {
$r[0]["body"] = diaspora2bb(bb2diaspora($r[0]["body"])); $r[0]["body"] = Markdown::toBBCode(BBCode::toMarkdown($r[0]["body"]));
$r[0]["body"] = self::replacePeopleGuid($r[0]["body"], $r[0]["author-link"]); $r[0]["body"] = self::replacePeopleGuid($r[0]["body"], $r[0]["author-link"]);
} }
@ -2939,7 +2941,7 @@ class Diaspora
} }
} }
$body = diaspora2bb($text); $body = Markdown::toBBCode($text);
$datarray = []; $datarray = [];
@ -3590,14 +3592,14 @@ class Diaspora
$eventdata['end'] = DateTimeFormat::convert($event['finish'], "UTC", $eventdata['timezone'], $mask); $eventdata['end'] = DateTimeFormat::convert($event['finish'], "UTC", $eventdata['timezone'], $mask);
} }
if ($event['summary']) { if ($event['summary']) {
$eventdata['summary'] = html_entity_decode(bb2diaspora($event['summary'])); $eventdata['summary'] = html_entity_decode(BBCode::toMarkdown($event['summary']));
} }
if ($event['desc']) { if ($event['desc']) {
$eventdata['description'] = html_entity_decode(bb2diaspora($event['desc'])); $eventdata['description'] = html_entity_decode(BBCode::toMarkdown($event['desc']));
} }
if ($event['location']) { if ($event['location']) {
$location = []; $location = [];
$location["address"] = html_entity_decode(bb2diaspora($event['location'])); $location["address"] = html_entity_decode(BBCode::toMarkdown($event['location']));
$location["lat"] = 0; $location["lat"] = 0;
$location["lng"] = 0; $location["lng"] = 0;
$eventdata['location'] = $location; $eventdata['location'] = $location;
@ -3647,7 +3649,7 @@ class Diaspora
$body = $item["body"]; $body = $item["body"];
// convert to markdown // convert to markdown
$body = html_entity_decode(bb2diaspora($body)); $body = html_entity_decode(BBCode::toMarkdown($body));
// Adding the title // Adding the title
if (strlen($title)) { if (strlen($title)) {
@ -3832,7 +3834,7 @@ class Diaspora
$parent = $p[0]; $parent = $p[0];
$text = html_entity_decode(bb2diaspora($item["body"])); $text = html_entity_decode(BBCode::toMarkdown($item["body"]));
$created = DateTimeFormat::utc($item["created"], DateTimeFormat::ATOM); $created = DateTimeFormat::utc($item["created"], DateTimeFormat::ATOM);
$comment = ["author" => self::myHandle($owner), $comment = ["author" => self::myHandle($owner),
@ -4068,7 +4070,7 @@ class Diaspora
"participants" => $cnv["recips"] "participants" => $cnv["recips"]
]; ];
$body = bb2diaspora($item["body"]); $body = BBCode::toMarkdown($item["body"]);
$created = DateTimeFormat::utc($item["created"], DateTimeFormat::ATOM); $created = DateTimeFormat::utc($item["created"], DateTimeFormat::ATOM);
$msg = [ $msg = [