X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=banana%2Fmisc.inc.php;h=5161b0dadc6a99293f70da3143709a53ec9ad15e;hb=73dfe36787551cd92ebed84dfd7b784d02180d57;hp=c073c25274bc178765ad043bc08bc1b3c2957552;hpb=28fb1083b25d7d92c4ead5c005e2accccb9d20bd;p=banana.git diff --git a/banana/misc.inc.php b/banana/misc.inc.php index c073c25..5161b0d 100644 --- a/banana/misc.inc.php +++ b/banana/misc.inc.php @@ -30,6 +30,67 @@ function textFormat_translate($format) } } +/** Redirect to the page with the given parameter + * @ref makeLink + */ +function redirect($params) +{ + header('Location: ' . makeLink($params)); +} + +/** Make a link using the given parameters + * @param ARRAY params, the parameters with + * key => value + * Known key are: + * - group = group name + * - artid/first = article id the the group + * - subscribe = to show the subscription page + * - action = action to do (new, cancel, view) + * - part = to show the given MIME part of the article + * - pj = to get the given attachment + * + * Can be overloaded by defining a hook_makeLink function + */ +function makeLink($params) +{ + if (function_exists('hook_makeLink') + && $res = hook_makeLink($params)) { + return $res; + } + $proto = empty($_SERVER['HTTPS']) ? 'http://' : 'https://'; + $host = $_SERVER['HTTP_HOST']; + $file = $_SERVER['PHP_SELF']; + + if (count($params) != 0) { + $get = '?'; + foreach ($params as $key=>$value) { + if (strlen($get) != 1) { + $get .= '&'; + } + $get .= $key . '=' . $value; + } + } else { + $get = ''; + } + + return $proto . $host . $file . $get; +} + +/** Format a link to be use in a link + * @ref makeLink + */ +function makeHREF($params, $text = null) +{ + $link = makeLink($params); + if (is_null($text)) { + $text = $link; + } + if ($params['action'] == 'view') { + $target = ' target="_blank"'; + } + return '' . $text . ''; +} + /******************************************************************************** * HTML STUFF * Taken from php.net @@ -114,14 +175,14 @@ function richtextToHtml($source) */ function _headerdecode($charset, $c, $str) { - $s = ($c == 'Q') ? quoted_printable_decode($str) : base64_decode($str); + $s = ($c == 'Q' || $c == 'q') ? quoted_printable_decode($str) : base64_decode($str); $s = iconv($charset, 'iso-8859-15', $s); return str_replace('_', ' ', $s); } function headerDecode($value) { - $val = preg_replace('/(=\?[^?]*\?[BQ]\?[^?]*\?=) (=\?[^?]*\?[BQ]\?[^?]*\?=)/', '\1\2', $value); - return preg_replace('/=\?([^?]*)\?([BQ])\?([^?]*)\?=/e', '_headerdecode("\1", "\2", "\3")', $val); + $val = preg_replace('/(=\?[^?]*\?[BQbq]\?[^?]*\?=) (=\?[^?]*\?[BQbq]\?[^?]*\?=)/', '\1\2', $value); + return preg_replace('/=\?([^?]*)\?([BQbq])\?([^?]*)\?=/e', '_headerdecode("\1", "\2", "\3")', $val); } function headerEncode($value, $trim = 0) { @@ -163,7 +224,7 @@ function formatDisplayHeader($_header,$_text) { $res = ""; $groups = preg_split("/[\t ]*,[\t ]*/",$_text); foreach ($groups as $g) { - $res.="$g, "; + $res .= makeHREF(Array('group' => $g), $g) . ', '; } return substr($res,0, -2); @@ -184,13 +245,13 @@ function formatDisplayHeader($_header,$_text) { $p = $banana->spool->overview[$p]->parent; } foreach (array_reverse($par_ok) as $p) { - $rsl .= "spool->group}&artid=$p\">$ndx "; + $rsl .= makeHREF(Array('group' => $banana->spool->group), $ndx); $ndx++; } return $rsl; case "x-face": - return 'x-face'; + return 'x-face'; default: if (function_exists('hook_formatDisplayHeader') @@ -250,15 +311,18 @@ function displayshortcuts($first = -1) { extract($banana->state); $res = '
'; - $res .= '['._b_('Liste des forums').'] '; + $res .= '[' . makeHREF(Array(), _b_('Liste des forums')) . '] '; if (is_null($group)) { - return $res.'['._b_('Abonnements').']
'; + return $res.'[' . makeHREF(Array('subscribe' => 1), _b_('Abonnements')) . ']'; } - $res .= "[$group] "; + $res .= '[' . makeHREF(Array('group' => $group), $group) . '] '; if (is_null($artid)) { - $res .= "["._b_('Nouveau message')."] "; + $res .= '[' . makeHREF(Array('group' => $group, + 'action' => 'new'), + _b_('Nouveau message')) + . '] '; if (sizeof($banana->spool->overview)>$banana->tmax) { $res .= '
'; $n = intval(log(count($banana->spool->overview), 10))+1; @@ -266,17 +330,26 @@ function displayshortcuts($first = -1) { if ($first==$ndx) { $fmt = "[%0{$n}u-%0{$n}u] "; } else { - $fmt = "[%0{$n}u-%0{$n}u] "; + $fmt = '[' . makeHREF(Array('group' => $group, + 'first' => $ndx), + '%0' . $n . 'u-%0' . $n . 'u') + . '] '; } $res .= sprintf($fmt, $ndx, min($ndx+$banana->tmax-1,sizeof($banana->spool->overview))); } } } else { - $res .= "[" - ._b_('RĂ©pondre')."] "; + $res .= '[' . makeHREF(Array('group' => $group, + 'artid' => $artid, + 'action' => 'new'), + _b_('RĂ©pondre')) + . '] '; if ($banana->post && $banana->post->checkcancel()) { - $res .= "[" - ._b_('Annuler ce message')."] "; + $res .= '[' . makeHREF(Array('group' => $group, + 'artid' => $artid, + 'action' => 'cancel'), + _b_('Annuler ce message')) + . '] '; } } return $res.''; @@ -294,7 +367,7 @@ function autoformat($text) $cmd = "echo ".escapeshellarg($text)." | perl -MText::Autoformat -e 'autoformat {left=>1, right=>$length, all=>1 };'"; exec($cmd, $result, $ret); if ($ret != 0) { - $result = $split("\n", $text); + $result = split("\n", $text); } return $result; } @@ -369,36 +442,55 @@ function cutlink($link) return $link; } +function cleanurl($url) +{ + $url = str_replace('@', '%40', $url); + return ''.cutlink($url).''; +} + function formatbody($_text, $format='plain', $flowed=false) { if ($format == 'html') { $res = '
'.html_entity_decode(to_entities(removeEvilTags($_text))).'
'; } else if ($format == 'richtext') { - $res = '
'.createlinks(html_entity_decode(to_entities(richtextToHtml($_text)))).'
'; - $format = 'html'; + $res = '
'.html_entity_decode(to_entities(richtextToHtml($_text))).'
'; } else { $res = "\n\n" . to_entities(wrap($_text, "", $flowed))."\n\n"; } - global $banana; - $url = $banana->url_regexp; - $res = preg_replace("/(<|>|")/", " \\1 ", $res); - $res = preg_replace("!$url!ie", "'\\1'.cutlink('\\2').'\\3'", $res); - $res = preg_replace("/ (<|>|") /", "\\1", $res); + if ($format != 'html') { + global $banana; + $url = $banana->url_regexp; + $res = preg_replace("/(<|>|")/", " \\1 ", $res); + $res = preg_replace("!$url!ie", "'\\1'.cleanurl('\\2').'\\3'", $res); + $res = preg_replace('/(["\[])?(?:mailto:)?([a-z0-9.\-+_]+@[a-z0-9.\-+_]+)(["\]])?/i', '\1\2\3', $res); + $res = preg_replace("/ (<|>|") /", "\\1", $res); + + if ($format == 'richtext') { + $format = 'html'; + } + } if ($format == 'html') { - $res = preg_replace("@(

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

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

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

|]*>\n?-- ?\n?]*>)@", $res); } else { - for ($i = 1 ; preg_match("@(^|
|\n)>@i", $res) ; $i++) {
+        while (preg_match("@(^|
|\n)>@i", $res)) {
             $res  = preg_replace("@(^|
|\n)((>[^\n]*\n)+)@ie",
-                "'\\1
'"
+                "'\\1
'"
     		    .".stripslashes(preg_replace('@(^|
|\n)>[ \\t\\r]*@i', '\\1', '\\2'))"
 	    	    .".'
'",
 	            $res);
         }
-	$res = preg_replace("@
-- ?\n@", "
\n-- \n", $res);
+		$formatting = Array('\*' => 'strong',
+							'_' => 'u',
+							'/' => 'em');
+		foreach ($formatting as $limit=>$mark) {
+			$res = preg_replace('@' . $limit . '([^\s]+)' . $limit . '@', "<$mark>\\1", $res);
+		}
+		$res = preg_replace("@
-- ?\n@", "
\n-- \n", $res);
         $parts = preg_split("/\n-- ?\n/", $res);
     }