X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;ds=sidebyside;f=banana%2Fmisc.inc.php;h=5161b0dadc6a99293f70da3143709a53ec9ad15e;hb=73dfe36787551cd92ebed84dfd7b784d02180d57;hp=f57ed8e4441d53d71312b35ac9bf1816e255deaf;hpb=09a8b2b016c840e4469d8b506fd2262cff264098;p=banana.git diff --git a/banana/misc.inc.php b/banana/misc.inc.php index f57ed8e..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 @@ -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,7 +245,7 @@ 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; @@ -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.''; @@ -411,7 +484,13 @@ function formatbody($_text, $format='plain', $flowed=false) .".'
'",
 	            $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);
     }