When too-long messages come in via OStatus, mark the attachment link up as a "more" link in the HTML output, marked with class="attachment more" so JS code can fold it out smartly. Text output will still include the raw link.

This commit is contained in:
Brion Vibber 2010-03-17 12:34:35 -07:00
parent 67f2f01c5e
commit 3a72c70b7e
1 changed files with 13 additions and 3 deletions

View File

@ -547,9 +547,19 @@ class Ostatus_profile extends Memcached_DataObject
$shortSummary = substr($shortSummary,
0,
Notice::maxContent() - (mb_strlen($url) + 2));
$shortSummary .= '… ' . $url;
$content = $shortSummary;
$rendered = common_render_text($content);
$shortSummary .= '…';
$content = $shortSummary . ' ' . $url;
// We mark up the attachment link specially for the HTML output
// so we can fold-out the full version inline.
$rendered = common_render_text($shortSummary) .
' ' .
'<a href="' .
htmlspecialchars($url) .
'" class="attachment more">' .
// TRANS: expansion link for too-long remote messages
htmlspecialchars(_m('(more)')) .
'</a>';
}
}