X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=banana%2Fmisc.inc.php;h=7a526ecdb20553e0c6402edac1a285a2105c01ed;hb=87514711ce06651c12c9bc3cc3675640559edf5a;hp=f8df8709168cc9fe047e0d758ee8ae95ab49a44f;hpb=16b17ba5309e8408935473631f91b76707d128a6;p=banana.git diff --git a/banana/misc.inc.php b/banana/misc.inc.php index f8df870..7a526ec 100644 --- a/banana/misc.inc.php +++ b/banana/misc.inc.php @@ -286,7 +286,7 @@ function displayshortcuts($first = -1) { * FORMATTING STUFF : BODY */ -function wrap($text, $_prefix="") +function wrap($text, $_prefix="", $_force=false) { $parts = preg_split("/\n-- ?\n/", $text); if (count($parts) >1) { @@ -294,31 +294,57 @@ function wrap($text, $_prefix="") $text = join("\n-- \n", $parts); } else { $sign = ''; - $text = $text; } global $banana; + $url = $banana->url_regexp; $length = $banana->wrap; - $cmd = "echo ".escapeshellarg($text)." | perl -MText::Autoformat -e 'autoformat {left=>1, right=>$length, all=>1 };'"; - exec($cmd, $result); + $max = $length + ($length/10); + $splits = split("\n", $text); + $ret = -1; + foreach ($splits as $line) { + if ($_force || strlen($line) > $max) { + if (!preg_match("!^\\s*$url\\s*$!i", $line)) { + $cmd = "echo ".escapeshellarg($text)." | perl -MText::Autoformat -e 'autoformat {left=>1, right=>$length, all=>1 };'"; + exec($cmd, $result, $ret); + break; + } + } + } + if ($ret != 0) { + $result = $splits; + } return $_prefix.join("\n$_prefix", $result).($_prefix ? '' : $sign); } -function formatbody($_text, $format='plain') +function cutlink($link) +{ + global $banana; + + if (strlen($link) > $banana->wrap) { + $link = substr($link, 0, $banana->wrap - 3)."..."; + } + return $link; +} + +function formatbody($_text, $format='plain', $flowed=false) { if ($format == 'html') { $res = '
'.html_entity_decode(to_entities(removeEvilTags($_text))).'
'; } else if ($format == 'richtext') { - $res = '
'.html_entity_decode(to_entities(richtextToHtml($_text))).'
'; + $res = '
'.createlinks(html_entity_decode(to_entities(richtextToHtml($_text)))).'
'; $format = 'html'; } else { - $res = "\n\n" . to_entities(wrap($_text, ""))."\n\n"; + $res = "\n\n" . to_entities(wrap($_text, "", $flowed))."\n\n"; } - $res = preg_replace("/(<|>|")/", " \\1 ", $res); - $res = preg_replace('/(["\[])?((https?|ftp|news):\/\/[a-z@0-9.~%$£µ&i#\-+=_\/\?]*)(["\]])?/i', '\1\2\4', $res); - $res = preg_replace("/ (<|>|") /", "\\1", $res); + global $banana; + $url = $banana->url_regexp; + $res = preg_replace("/(<|>|")/", " \\1 ", $_text); + $res = preg_replace("!$url!ie", "'\\1'.cutlink('\\2').'\\3'", $res); + $res = preg_replace("/ (<|>|") /", "\\1", $res); + if ($format == 'html') { $res = preg_replace("@(

)\n?-- \n?(]*>|]*>)@", "\\1
-- \\2", $res); $res = preg_replace("@]*>\n?-- \n?(]*>)@", "
--
\\2", $res);