Bifurcation depuis
spip / spip
18161 validations de retard le dépôt en amont.
-
esj a rédigé
Passage en Post de tous les formulaires GET, car ceux-ci ne seront plus compatibles avec l'extensibilite de SPIP. Celle-ci devra utiliser du coup _REQUEST pour recuperer le nom de l'action a faire, on l'instaure tout de suite. Version standard toujours operationnelle, mais l'extensibilite ne s'obtient pas encore apres execution de spip_migre
esj a rédigéPassage en Post de tous les formulaires GET, car ceux-ci ne seront plus compatibles avec l'extensibilite de SPIP. Celle-ci devra utiliser du coup _REQUEST pour recuperer le nom de l'action a faire, on l'instaure tout de suite. Version standard toujours operationnelle, mais l'extensibilite ne s'obtient pas encore apres execution de spip_migre
inc_minipres.php 6,25 Kio
<?php
/***************************************************************************\
* SPIP, Systeme de publication pour l'internet *
* *
* Copyright (c) 2001-2006 *
* Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
* *
* Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
* Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
\***************************************************************************/
if (!defined("_ECRIRE_INC_VERSION")) return;
include_ecrire ("inc_lang");
utiliser_langue_visiteur();
//
// Presentation des pages d'installation et d'erreurs
//
function install_debut_html($titre = 'AUTO') {
if ($titre=='AUTO')
$titre=_T('info_installation_systeme_publication');
include_ecrire('inc_headers');
http_no_cache();
$args_color = "couleur_claire=" .
urlencode('#FFCC66') .
'&couleur_foncee=' .
urlencode('#000000') .
'&left=' .
$GLOBALS['spip_lang_left'];
echo _DOCTYPE_ECRIRE ,
"<html lang='",$GLOBALS['spip_lang'],
"' dir='",($GLOBALS['spip_lang_rtl'] ? 'rtl' : 'ltr'),"'>\n" ,
"<head>\n",
"<title>",
$titre,
"</title>\n" ,
'<link rel="stylesheet" type="text/css" href=\'' ,
generer_url_ecrire('spip_style', $args_color),
"'>
<style type='text/css'>
<!--
a {text-decoration: none; }
-->
</style>
</head>
<body bgcolor='#FFFFFF' text='#000000' link='#E86519' vlink='#6E003A' alink='#FF9900'>
<center><table style='margin-top:50px; width: 450px'>
<tr><th style='color: #970038;text-align: left;font-family: Verdana; font-weigth: bold; font-size: 18px'>",
$titre ,
"</th></tr>
<tr><td class='serif'>";
}
function install_fin_html() {
echo '</td></tr></table></body></html>';
}
//
// Aide
//
// en hebreu le ? ne doit pas etre inverse
function aide_lang_dir($spip_lang,$spip_lang_rtl) {
return ($spip_lang<>'he') ? $spip_lang_rtl : '';
}
function aide($aide='') {
global $spip_lang, $spip_lang_rtl, $spip_display;
if (!$aide OR $spip_display == 4) return;
return " <a class='aide' href='"
. generer_url_ecrire("aide_index", "aide=$aide&var_lang=$spip_lang")
. "' target=\"spip_aide\" "
. "onclick=\"javascript:window.open(this.href,"
. "'spip_aide', 'scrollbars=yes, resizable=yes, width=740, "
. "height=580'); return false;\">"
. http_img_pack("aide".aide_lang_dir($spip_lang,$spip_lang_rtl).".gif",
_T('info_image_aide'), "title=\""._T('titre_image_aide')
. "\" width=\"12\" height=\"12\" border=\"0\" align=\"middle\"")
. "</a>";
}
function info_copyright() {
global $spip_version_affichee, $spip_lang;
echo _T('info_copyright',
array('spip' => "<b>SPIP $spip_version_affichee</b> ",
'lien_gpl' =>
"<a href='". generer_url_ecrire("aide_index", "aide=licence&var_lang=$spip_lang") . "' target='spip_aide' onClick=\"javascript:window.open(this.href, 'aide_spip', 'scrollbars=yes,resizable=yes,width=740,height=580'); return false;\">" . _T('info_copyright_gpl')."</a>"));
}
// normalement il faudrait definir inc_info.php, mais pour mettre juste ca:
function info_dist() {
global $connect_statut;
if ($connect_statut == '0minirezo') phpinfo();
}
// normalement il faudrait definir inc_iframe_action.php, mais pour mettre juste ca:
function iframe_action_dist()
{
global $connect_statut, $id, $action, $statut, $redirect;
if ($id && ($connect_statut == "0minirezo")) {
$var_f = find_in_path('inc_' . $action);
if ($var_f)
include($var_f);
else
include_ecrire('inc_' . $action);
$var_nom = 'changer_statut_' . $action;
if (function_exists($var_nom))
$var_nom($id, $statut);
else spip_log("fonction $var_nom indisponible dans $var_f");
}
if (!$redirect)
header("Cache-Control: no-store, no-cache, must-revalidate");
else
header("Location: " . urldecode($redirect));
}
// Afficher le bouton "preview" dans l'espace public
function afficher_bouton_preview() {
$x = _T('previsualisation');
return '<div style="
display: block;
color: #eeeeee;
background-color: #111111;
padding-right: 5px;
padding-top: 2px;
padding-bottom: 5px;
font-size: 20px;
top: 0px;
left: 0px;
position: absolute;
">'
. http_img_pack('naviguer-site.png', $x, '')
. ' ' . majuscules($x) . '</div>';
}
// Fabrique une balise A, avec tous les attributs possibles
// attention au cas ou la href est du Javascript avec des "'"
// pour un href conforme au validateur W3C, faire & --> & avant
function http_href($href, $clic, $title='', $style='', $class='', $evt='') {
return '<a href="' .
$href .
'"' .
(!$title ? '' : ("\ntitle=\"" . supprimer_tags($title)."\"")) .
(!$style ? '' : ("\nstyle=\"" . $style . "\"")) .
(!$class ? '' : ("\nclass=\"" . $class . "\"")) .
($evt ? "\n$evt" : '') .
'>' .
$clic .
'</a>';
}
// produit une balise img avec un champ alt d'office si vide
// attention le htmlentities et la traduction doivent etre appliques avant.
function http_img_pack($img, $alt, $att, $title='') {
return "<img src='" . _DIR_IMG_PACK . $img
. ("'\nalt=\"" .
($alt ? $alt : ($title ? $title : ereg_replace('\..*$','',$img)))
. '" ')
. ($title ? " title=\"$title\"" : '')
. $att . " />";
}
function http_href_img($href, $img, $att, $title='', $style='', $class='', $evt='') {
return http_href($href, http_img_pack($img, $title, $att), $title, $style, $class, $evt);
}
// Pour les formulaires en methode POST,
// mettre les arguments a la fois en input-hidden et dans le champ action:
// 1) on peut ainsi memoriser le signet comme si c'etait un GET
// 2) ca suit http://en.wikipedia.org/wiki/Representational_State_Transfer
// Attention: generer_url_ecrire peut rajouter des args
function generer_url_post_ecrire($script, $args='', $name='', $ancre='') {
$hidden = "";
$action = generer_url_ecrire($script, $args) ;
if ($p = strpos($action, '?'))
foreach(preg_split('/&(amp;)?/',substr($action,$p+1)) as $c) {
$hidden .= "\n<input name='" .
str_replace('=', "' value='", $c) .
"' type='hidden' />";
}
if ($name) $name = " name='$name'";
return "\n<form action='$action$ancre'$name method='post'>$hidden";
}
?>