@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | * @package SPIP\Core\Presentation |
| 17 | 17 | **/ |
| 18 | 18 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 19 | - return; |
|
| 19 | + return; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | include_spip('inc/presentation_mini'); |
@@ -31,44 +31,44 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | // http://code.spip.net/@debut_cadre |
| 33 | 33 | function debut_cadre($style, $icone = "", $fonction = "", $titre = "", $id = "", $class = "", $padding = true) { |
| 34 | - $style_mapping = array( |
|
| 35 | - 'r' => 'simple', |
|
| 36 | - 'e' => 'raccourcis', |
|
| 37 | - 'couleur' => 'basic highlight', |
|
| 38 | - 'couleur-foncee' => 'basic highlight', |
|
| 39 | - 'trait-couleur' => 'important', |
|
| 40 | - 'alerte' => 'notice', |
|
| 41 | - 'info' => 'info', |
|
| 42 | - 'sous_rub' => 'simple sous-rub' |
|
| 43 | - ); |
|
| 44 | - $style_titre_mapping = array('couleur' => 'topper', 'trait-couleur' => 'section'); |
|
| 45 | - $c = isset($style_mapping[$style]) ? $style_mapping[$style] : 'simple'; |
|
| 46 | - $class = $c . ($class ? " $class" : ""); |
|
| 47 | - if (!$padding) { |
|
| 48 | - $class .= ($class ? " " : "") . "no-padding"; |
|
| 49 | - } |
|
| 50 | - |
|
| 51 | - //($id?"id='$id' ":"") |
|
| 52 | - if (strlen($icone) > 1) { |
|
| 53 | - if ($icone_renommer = charger_fonction('icone_renommer', 'inc', true)) { |
|
| 54 | - list($fond, $fonction) = $icone_renommer($icone, $fonction); |
|
| 55 | - } |
|
| 56 | - $size = 24; |
|
| 57 | - if (preg_match("/-([0-9]{1,3})[.](gif|png)$/i", $fond, $match)) { |
|
| 58 | - $size = $match[1]; |
|
| 59 | - } |
|
| 60 | - if ($fonction) { |
|
| 61 | - // 2 images pour composer l'icone : le fond (article) en background, |
|
| 62 | - // la fonction (new) en image |
|
| 63 | - $icone = http_img_pack($fonction, "", "class='cadre-icone' width='$size' height='$size'\n" . |
|
| 64 | - http_style_background($fond, "no-repeat center center", $size)); |
|
| 65 | - } else { |
|
| 66 | - $icone = http_img_pack($fond, "", "class='cadre-icone' width='$size' height='$size'"); |
|
| 67 | - } |
|
| 68 | - $titre = $icone . $titre; |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - return boite_ouvrir($titre, $class, isset($style_titre_mapping[$style]) ? $style_titre_mapping[$style] : '', $id); |
|
| 34 | + $style_mapping = array( |
|
| 35 | + 'r' => 'simple', |
|
| 36 | + 'e' => 'raccourcis', |
|
| 37 | + 'couleur' => 'basic highlight', |
|
| 38 | + 'couleur-foncee' => 'basic highlight', |
|
| 39 | + 'trait-couleur' => 'important', |
|
| 40 | + 'alerte' => 'notice', |
|
| 41 | + 'info' => 'info', |
|
| 42 | + 'sous_rub' => 'simple sous-rub' |
|
| 43 | + ); |
|
| 44 | + $style_titre_mapping = array('couleur' => 'topper', 'trait-couleur' => 'section'); |
|
| 45 | + $c = isset($style_mapping[$style]) ? $style_mapping[$style] : 'simple'; |
|
| 46 | + $class = $c . ($class ? " $class" : ""); |
|
| 47 | + if (!$padding) { |
|
| 48 | + $class .= ($class ? " " : "") . "no-padding"; |
|
| 49 | + } |
|
| 50 | + |
|
| 51 | + //($id?"id='$id' ":"") |
|
| 52 | + if (strlen($icone) > 1) { |
|
| 53 | + if ($icone_renommer = charger_fonction('icone_renommer', 'inc', true)) { |
|
| 54 | + list($fond, $fonction) = $icone_renommer($icone, $fonction); |
|
| 55 | + } |
|
| 56 | + $size = 24; |
|
| 57 | + if (preg_match("/-([0-9]{1,3})[.](gif|png)$/i", $fond, $match)) { |
|
| 58 | + $size = $match[1]; |
|
| 59 | + } |
|
| 60 | + if ($fonction) { |
|
| 61 | + // 2 images pour composer l'icone : le fond (article) en background, |
|
| 62 | + // la fonction (new) en image |
|
| 63 | + $icone = http_img_pack($fonction, "", "class='cadre-icone' width='$size' height='$size'\n" . |
|
| 64 | + http_style_background($fond, "no-repeat center center", $size)); |
|
| 65 | + } else { |
|
| 66 | + $icone = http_img_pack($fond, "", "class='cadre-icone' width='$size' height='$size'"); |
|
| 67 | + } |
|
| 68 | + $titre = $icone . $titre; |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + return boite_ouvrir($titre, $class, isset($style_titre_mapping[$style]) ? $style_titre_mapping[$style] : '', $id); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | // http://code.spip.net/@fin_cadre |
@@ -76,66 +76,66 @@ discard block |
||
| 76 | 76 | |
| 77 | 77 | |
| 78 | 78 | function debut_cadre_relief( |
| 79 | - $icone = '', |
|
| 80 | - $dummy = '', |
|
| 81 | - $fonction = '', |
|
| 82 | - $titre = '', |
|
| 83 | - $id = "", |
|
| 84 | - $class = "" |
|
| 79 | + $icone = '', |
|
| 80 | + $dummy = '', |
|
| 81 | + $fonction = '', |
|
| 82 | + $titre = '', |
|
| 83 | + $id = "", |
|
| 84 | + $class = "" |
|
| 85 | 85 | ) { |
| 86 | - return debut_cadre('r', $icone, $fonction, $titre, $id, $class); |
|
| 86 | + return debut_cadre('r', $icone, $fonction, $titre, $id, $class); |
|
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | function fin_cadre_relief() { return fin_cadre('r'); } |
| 90 | 90 | |
| 91 | 91 | function debut_cadre_enfonce( |
| 92 | - $icone = '', |
|
| 93 | - $dummy = '', |
|
| 94 | - $fonction = '', |
|
| 95 | - $titre = '', |
|
| 96 | - $id = "", |
|
| 97 | - $class = "" |
|
| 92 | + $icone = '', |
|
| 93 | + $dummy = '', |
|
| 94 | + $fonction = '', |
|
| 95 | + $titre = '', |
|
| 96 | + $id = "", |
|
| 97 | + $class = "" |
|
| 98 | 98 | ) { |
| 99 | - return debut_cadre('e', $icone, $fonction, $titre, $id, $class); |
|
| 99 | + return debut_cadre('e', $icone, $fonction, $titre, $id, $class); |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | function fin_cadre_enfonce() { return fin_cadre('e'); } |
| 103 | 103 | |
| 104 | 104 | function debut_cadre_sous_rub( |
| 105 | - $icone = '', |
|
| 106 | - $dummy = '', |
|
| 107 | - $fonction = '', |
|
| 108 | - $titre = '', |
|
| 109 | - $id = "", |
|
| 110 | - $class = "" |
|
| 105 | + $icone = '', |
|
| 106 | + $dummy = '', |
|
| 107 | + $fonction = '', |
|
| 108 | + $titre = '', |
|
| 109 | + $id = "", |
|
| 110 | + $class = "" |
|
| 111 | 111 | ) { |
| 112 | - return debut_cadre('sous_rub', $icone, $fonction, $titre, $id, $class); |
|
| 112 | + return debut_cadre('sous_rub', $icone, $fonction, $titre, $id, $class); |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | function fin_cadre_sous_rub() { return fin_cadre('sous_rub'); } |
| 116 | 116 | |
| 117 | 117 | function debut_cadre_couleur( |
| 118 | - $icone = '', |
|
| 119 | - $dummy = '', |
|
| 120 | - $fonction = '', |
|
| 121 | - $titre = '', |
|
| 122 | - $id = "", |
|
| 123 | - $class = "" |
|
| 118 | + $icone = '', |
|
| 119 | + $dummy = '', |
|
| 120 | + $fonction = '', |
|
| 121 | + $titre = '', |
|
| 122 | + $id = "", |
|
| 123 | + $class = "" |
|
| 124 | 124 | ) { |
| 125 | - return debut_cadre('couleur', $icone, $fonction, $titre, $id, $class); |
|
| 125 | + return debut_cadre('couleur', $icone, $fonction, $titre, $id, $class); |
|
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | function fin_cadre_couleur() { return fin_cadre('couleur'); } |
| 129 | 129 | |
| 130 | 130 | function debut_cadre_trait_couleur( |
| 131 | - $icone = '', |
|
| 132 | - $dummy = '', |
|
| 133 | - $fonction = '', |
|
| 134 | - $titre = '', |
|
| 135 | - $id = "", |
|
| 136 | - $class = "" |
|
| 131 | + $icone = '', |
|
| 132 | + $dummy = '', |
|
| 133 | + $fonction = '', |
|
| 134 | + $titre = '', |
|
| 135 | + $id = "", |
|
| 136 | + $class = "" |
|
| 137 | 137 | ) { |
| 138 | - return debut_cadre('trait-couleur', $icone, $fonction, $titre, $id, $class); |
|
| 138 | + return debut_cadre('trait-couleur', $icone, $fonction, $titre, $id, $class); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | function fin_cadre_trait_couleur() { return fin_cadre('trait-couleur'); } |
@@ -156,18 +156,18 @@ discard block |
||
| 156 | 156 | * @return string Code PHP. |
| 157 | 157 | **/ |
| 158 | 158 | function gros_titre( |
| 159 | - $titre, |
|
| 160 | - $ze_logo = '' |
|
| 159 | + $titre, |
|
| 160 | + $ze_logo = '' |
|
| 161 | 161 | ) { |
| 162 | - return "<h1 class = 'grostitre'>" . $ze_logo . ' ' . typo($titre) . "</h1>\n"; |
|
| 162 | + return "<h1 class = 'grostitre'>" . $ze_logo . ' ' . typo($titre) . "</h1>\n"; |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | // La boite des raccourcis |
| 166 | 166 | // Se place a droite si l'ecran est en mode panoramique. |
| 167 | 167 | // http://code.spip.net/@bloc_des_raccourcis |
| 168 | 168 | function bloc_des_raccourcis($bloc) { |
| 169 | - return creer_colonne_droite() |
|
| 170 | - . boite_ouvrir(_T('titre_cadre_raccourcis'), 'raccourcis') . $bloc . boite_fermer(); |
|
| 169 | + return creer_colonne_droite() |
|
| 170 | + . boite_ouvrir(_T('titre_cadre_raccourcis'), 'raccourcis') . $bloc . boite_fermer(); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | // |
@@ -184,10 +184,10 @@ discard block |
||
| 184 | 184 | |
| 185 | 185 | // http://code.spip.net/@onglet |
| 186 | 186 | function onglet($texte, $lien, $onglet_ref, $onglet, $icone = "") { |
| 187 | - return "<li>" |
|
| 188 | - . ($icone ? http_img_pack($icone, '', " class='cadre-icone'") : '') |
|
| 189 | - . lien_ou_expose($lien, $texte, $onglet == $onglet_ref) |
|
| 190 | - . "</li>"; |
|
| 187 | + return "<li>" |
|
| 188 | + . ($icone ? http_img_pack($icone, '', " class='cadre-icone'") : '') |
|
| 189 | + . lien_ou_expose($lien, $texte, $onglet == $onglet_ref) |
|
| 190 | + . "</li>"; |
|
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | /** |
@@ -219,14 +219,14 @@ discard block |
||
| 219 | 219 | * Code HTML du lien |
| 220 | 220 | **/ |
| 221 | 221 | function icone_verticale($texte, $lien, $fond, $fonction = "", $align = "", $javascript = "") { |
| 222 | - // cas d'ajax_action_auteur: faut defaire le boulot |
|
| 223 | - // (il faudrait fusionner avec le cas $javascript) |
|
| 224 | - if (preg_match(",^<a\shref='([^']*)'([^>]*)>(.*)</a>$,i", $lien, $r)) { |
|
| 225 | - list($x, $lien, $atts, $texte) = $r; |
|
| 226 | - $javascript .= $atts; |
|
| 227 | - } |
|
| 228 | - |
|
| 229 | - return icone_base($lien, $texte, $fond, $fonction, "verticale $align", $javascript); |
|
| 222 | + // cas d'ajax_action_auteur: faut defaire le boulot |
|
| 223 | + // (il faudrait fusionner avec le cas $javascript) |
|
| 224 | + if (preg_match(",^<a\shref='([^']*)'([^>]*)>(.*)</a>$,i", $lien, $r)) { |
|
| 225 | + list($x, $lien, $atts, $texte) = $r; |
|
| 226 | + $javascript .= $atts; |
|
| 227 | + } |
|
| 228 | + |
|
| 229 | + return icone_base($lien, $texte, $fond, $fonction, "verticale $align", $javascript); |
|
| 230 | 230 | } |
| 231 | 231 | |
| 232 | 232 | /** |
@@ -251,15 +251,15 @@ discard block |
||
| 251 | 251 | * Code HTML du lien |
| 252 | 252 | **/ |
| 253 | 253 | function icone_horizontale($texte, $lien, $fond, $fonction = "", $dummy = "", $javascript = "") { |
| 254 | - $retour = ''; |
|
| 255 | - // cas d'ajax_action_auteur: faut defaire le boulot |
|
| 256 | - // (il faudrait fusionner avec le cas $javascript) |
|
| 257 | - if (preg_match(",^<a\shref='([^']*)'([^>]*)>(.*)</a>$,i", $lien, $r)) { |
|
| 258 | - list($x, $lien, $atts, $texte) = $r; |
|
| 259 | - $javascript .= $atts; |
|
| 260 | - } |
|
| 254 | + $retour = ''; |
|
| 255 | + // cas d'ajax_action_auteur: faut defaire le boulot |
|
| 256 | + // (il faudrait fusionner avec le cas $javascript) |
|
| 257 | + if (preg_match(",^<a\shref='([^']*)'([^>]*)>(.*)</a>$,i", $lien, $r)) { |
|
| 258 | + list($x, $lien, $atts, $texte) = $r; |
|
| 259 | + $javascript .= $atts; |
|
| 260 | + } |
|
| 261 | 261 | |
| 262 | - $retour = icone_base($lien, $texte, $fond, $fonction, "horizontale", $javascript); |
|
| 262 | + $retour = icone_base($lien, $texte, $fond, $fonction, "horizontale", $javascript); |
|
| 263 | 263 | |
| 264 | - return $retour; |
|
| 264 | + return $retour; |
|
| 265 | 265 | } |
@@ -43,9 +43,9 @@ discard block |
||
| 43 | 43 | ); |
| 44 | 44 | $style_titre_mapping = array('couleur' => 'topper', 'trait-couleur' => 'section'); |
| 45 | 45 | $c = isset($style_mapping[$style]) ? $style_mapping[$style] : 'simple'; |
| 46 | - $class = $c . ($class ? " $class" : ""); |
|
| 46 | + $class = $c.($class ? " $class" : ""); |
|
| 47 | 47 | if (!$padding) { |
| 48 | - $class .= ($class ? " " : "") . "no-padding"; |
|
| 48 | + $class .= ($class ? " " : "")."no-padding"; |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | //($id?"id='$id' ":"") |
@@ -60,12 +60,12 @@ discard block |
||
| 60 | 60 | if ($fonction) { |
| 61 | 61 | // 2 images pour composer l'icone : le fond (article) en background, |
| 62 | 62 | // la fonction (new) en image |
| 63 | - $icone = http_img_pack($fonction, "", "class='cadre-icone' width='$size' height='$size'\n" . |
|
| 63 | + $icone = http_img_pack($fonction, "", "class='cadre-icone' width='$size' height='$size'\n". |
|
| 64 | 64 | http_style_background($fond, "no-repeat center center", $size)); |
| 65 | 65 | } else { |
| 66 | 66 | $icone = http_img_pack($fond, "", "class='cadre-icone' width='$size' height='$size'"); |
| 67 | 67 | } |
| 68 | - $titre = $icone . $titre; |
|
| 68 | + $titre = $icone.$titre; |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | return boite_ouvrir($titre, $class, isset($style_titre_mapping[$style]) ? $style_titre_mapping[$style] : '', $id); |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | $titre, |
| 160 | 160 | $ze_logo = '' |
| 161 | 161 | ) { |
| 162 | - return "<h1 class = 'grostitre'>" . $ze_logo . ' ' . typo($titre) . "</h1>\n"; |
|
| 162 | + return "<h1 class = 'grostitre'>".$ze_logo.' '.typo($titre)."</h1>\n"; |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | // La boite des raccourcis |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | // http://code.spip.net/@bloc_des_raccourcis |
| 168 | 168 | function bloc_des_raccourcis($bloc) { |
| 169 | 169 | return creer_colonne_droite() |
| 170 | - . boite_ouvrir(_T('titre_cadre_raccourcis'), 'raccourcis') . $bloc . boite_fermer(); |
|
| 170 | + . boite_ouvrir(_T('titre_cadre_raccourcis'), 'raccourcis').$bloc.boite_fermer(); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | // |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | * @package SPIP\Core\Filtres |
| 17 | 17 | **/ |
| 18 | 18 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 19 | - return; |
|
| 19 | + return; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | include_spip('inc/charsets'); |
@@ -42,8 +42,8 @@ discard block |
||
| 42 | 42 | * @return string Fonction PHP correspondante du filtre |
| 43 | 43 | */ |
| 44 | 44 | function charger_filtre($fonc, $default = 'filtre_identite_dist') { |
| 45 | - include_spip('public/parametrer'); // inclure les fichiers fonctions |
|
| 46 | - return chercher_filtre($fonc, $default); |
|
| 45 | + include_spip('public/parametrer'); // inclure les fichiers fonctions |
|
| 46 | + return chercher_filtre($fonc, $default); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
@@ -75,36 +75,36 @@ discard block |
||
| 75 | 75 | * Fonction PHP correspondante du filtre demandé |
| 76 | 76 | */ |
| 77 | 77 | function chercher_filtre($fonc, $default = null) { |
| 78 | - if (!$fonc) { |
|
| 79 | - return $default; |
|
| 80 | - } |
|
| 81 | - // Cas des types mime, sans confondre avec les appels de fonction de classe |
|
| 82 | - // Foo::Bar |
|
| 83 | - // qui peuvent etre avec un namespace : space\Foo::Bar |
|
| 84 | - if (preg_match(',^[\w]+/,', $fonc)) { |
|
| 85 | - $nom = preg_replace(',\W,', '_', $fonc); |
|
| 86 | - $f = chercher_filtre($nom); |
|
| 87 | - // cas du sous-type MIME sans filtre associe, passer au type: |
|
| 88 | - // si filtre_text_plain pas defini, passe a filtre_text |
|
| 89 | - if (!$f and $nom !== $fonc) { |
|
| 90 | - $f = chercher_filtre(preg_replace(',\W.*$,', '', $fonc)); |
|
| 91 | - } |
|
| 92 | - |
|
| 93 | - return $f; |
|
| 94 | - } |
|
| 95 | - foreach (array('filtre_' . $fonc, 'filtre_' . $fonc . '_dist', $fonc) as $f) { |
|
| 96 | - trouver_filtre_matrice($f); // charge des fichiers spécifiques éventuels |
|
| 97 | - // fonction ou name\space\fonction |
|
| 98 | - if (is_callable($f)) { |
|
| 99 | - return $f; |
|
| 100 | - } |
|
| 101 | - // méthode statique d'une classe Classe::methode ou name\space\Classe::methode |
|
| 102 | - elseif (false === strpos($f, '::') and is_callable(array($f))) { |
|
| 103 | - return $f; |
|
| 104 | - } |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - return $default; |
|
| 78 | + if (!$fonc) { |
|
| 79 | + return $default; |
|
| 80 | + } |
|
| 81 | + // Cas des types mime, sans confondre avec les appels de fonction de classe |
|
| 82 | + // Foo::Bar |
|
| 83 | + // qui peuvent etre avec un namespace : space\Foo::Bar |
|
| 84 | + if (preg_match(',^[\w]+/,', $fonc)) { |
|
| 85 | + $nom = preg_replace(',\W,', '_', $fonc); |
|
| 86 | + $f = chercher_filtre($nom); |
|
| 87 | + // cas du sous-type MIME sans filtre associe, passer au type: |
|
| 88 | + // si filtre_text_plain pas defini, passe a filtre_text |
|
| 89 | + if (!$f and $nom !== $fonc) { |
|
| 90 | + $f = chercher_filtre(preg_replace(',\W.*$,', '', $fonc)); |
|
| 91 | + } |
|
| 92 | + |
|
| 93 | + return $f; |
|
| 94 | + } |
|
| 95 | + foreach (array('filtre_' . $fonc, 'filtre_' . $fonc . '_dist', $fonc) as $f) { |
|
| 96 | + trouver_filtre_matrice($f); // charge des fichiers spécifiques éventuels |
|
| 97 | + // fonction ou name\space\fonction |
|
| 98 | + if (is_callable($f)) { |
|
| 99 | + return $f; |
|
| 100 | + } |
|
| 101 | + // méthode statique d'une classe Classe::methode ou name\space\Classe::methode |
|
| 102 | + elseif (false === strpos($f, '::') and is_callable(array($f))) { |
|
| 103 | + return $f; |
|
| 104 | + } |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + return $default; |
|
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | /** |
@@ -128,20 +128,20 @@ discard block |
||
| 128 | 128 | * Chaîne vide sinon (filtre introuvable). |
| 129 | 129 | **/ |
| 130 | 130 | function appliquer_filtre($arg, $filtre, $force = null) { |
| 131 | - $f = chercher_filtre($filtre); |
|
| 132 | - if (!$f) { |
|
| 133 | - if (!$force) { |
|
| 134 | - return ''; |
|
| 135 | - } else { |
|
| 136 | - return $arg; |
|
| 137 | - } |
|
| 138 | - } |
|
| 131 | + $f = chercher_filtre($filtre); |
|
| 132 | + if (!$f) { |
|
| 133 | + if (!$force) { |
|
| 134 | + return ''; |
|
| 135 | + } else { |
|
| 136 | + return $arg; |
|
| 137 | + } |
|
| 138 | + } |
|
| 139 | 139 | |
| 140 | - $args = func_get_args(); |
|
| 141 | - array_shift($args); // enlever $arg |
|
| 142 | - array_shift($args); // enlever $filtre |
|
| 143 | - array_unshift($args, $arg); // remettre $arg |
|
| 144 | - return call_user_func_array($f, $args); |
|
| 140 | + $args = func_get_args(); |
|
| 141 | + array_shift($args); // enlever $arg |
|
| 142 | + array_shift($args); // enlever $filtre |
|
| 143 | + array_unshift($args, $arg); // remettre $arg |
|
| 144 | + return call_user_func_array($f, $args); |
|
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | /** |
@@ -157,12 +157,12 @@ discard block |
||
| 157 | 157 | * Version de SPIP |
| 158 | 158 | **/ |
| 159 | 159 | function spip_version() { |
| 160 | - $version = $GLOBALS['spip_version_affichee']; |
|
| 161 | - if ($svn_revision = version_svn_courante(_DIR_RACINE)) { |
|
| 162 | - $version .= ($svn_revision < 0 ? ' SVN' : '') . ' [' . abs($svn_revision) . ']'; |
|
| 163 | - } |
|
| 160 | + $version = $GLOBALS['spip_version_affichee']; |
|
| 161 | + if ($svn_revision = version_svn_courante(_DIR_RACINE)) { |
|
| 162 | + $version .= ($svn_revision < 0 ? ' SVN' : '') . ' [' . abs($svn_revision) . ']'; |
|
| 163 | + } |
|
| 164 | 164 | |
| 165 | - return $version; |
|
| 165 | + return $version; |
|
| 166 | 166 | } |
| 167 | 167 | |
| 168 | 168 | |
@@ -181,43 +181,43 @@ discard block |
||
| 181 | 181 | * |
| 182 | 182 | **/ |
| 183 | 183 | function version_svn_courante($dir) { |
| 184 | - if (!$dir) { |
|
| 185 | - $dir = '.'; |
|
| 186 | - } |
|
| 187 | - |
|
| 188 | - // version installee par paquet ZIP |
|
| 189 | - if (lire_fichier($dir . '/svn.revision', $c) |
|
| 190 | - and preg_match(',Revision: (\d+),', $c, $d) |
|
| 191 | - ) { |
|
| 192 | - return intval($d[1]); |
|
| 193 | - } |
|
| 194 | - |
|
| 195 | - // version installee par SVN |
|
| 196 | - if (file_exists($dir . '/.svn/wc.db') && class_exists('SQLite3')) { |
|
| 197 | - $db = new SQLite3($dir . '/.svn/wc.db'); |
|
| 198 | - $result = $db->query('SELECT changed_revision FROM nodes WHERE local_relpath = "" LIMIT 1'); |
|
| 199 | - if ($result) { |
|
| 200 | - $row = $result->fetchArray(); |
|
| 201 | - if ($row['changed_revision'] != "") { |
|
| 202 | - return -$row['changed_revision']; |
|
| 203 | - } |
|
| 204 | - } |
|
| 205 | - } else if (lire_fichier($dir . '/.svn/entries', $c) |
|
| 206 | - and ( |
|
| 207 | - (preg_match_all( |
|
| 208 | - ',committed-rev="([0-9]+)",', $c, $r1, PREG_PATTERN_ORDER) |
|
| 209 | - and $v = max($r1[1]) |
|
| 210 | - ) |
|
| 211 | - or |
|
| 212 | - (preg_match(',^\d.*dir[\r\n]+(\d+),ms', $c, $r1) # svn >= 1.4 |
|
| 213 | - and $v = $r1[1] |
|
| 214 | - )) |
|
| 215 | - ) { |
|
| 216 | - return -$v; |
|
| 217 | - } |
|
| 218 | - |
|
| 219 | - // Bug ou paquet fait main |
|
| 220 | - return 0; |
|
| 184 | + if (!$dir) { |
|
| 185 | + $dir = '.'; |
|
| 186 | + } |
|
| 187 | + |
|
| 188 | + // version installee par paquet ZIP |
|
| 189 | + if (lire_fichier($dir . '/svn.revision', $c) |
|
| 190 | + and preg_match(',Revision: (\d+),', $c, $d) |
|
| 191 | + ) { |
|
| 192 | + return intval($d[1]); |
|
| 193 | + } |
|
| 194 | + |
|
| 195 | + // version installee par SVN |
|
| 196 | + if (file_exists($dir . '/.svn/wc.db') && class_exists('SQLite3')) { |
|
| 197 | + $db = new SQLite3($dir . '/.svn/wc.db'); |
|
| 198 | + $result = $db->query('SELECT changed_revision FROM nodes WHERE local_relpath = "" LIMIT 1'); |
|
| 199 | + if ($result) { |
|
| 200 | + $row = $result->fetchArray(); |
|
| 201 | + if ($row['changed_revision'] != "") { |
|
| 202 | + return -$row['changed_revision']; |
|
| 203 | + } |
|
| 204 | + } |
|
| 205 | + } else if (lire_fichier($dir . '/.svn/entries', $c) |
|
| 206 | + and ( |
|
| 207 | + (preg_match_all( |
|
| 208 | + ',committed-rev="([0-9]+)",', $c, $r1, PREG_PATTERN_ORDER) |
|
| 209 | + and $v = max($r1[1]) |
|
| 210 | + ) |
|
| 211 | + or |
|
| 212 | + (preg_match(',^\d.*dir[\r\n]+(\d+),ms', $c, $r1) # svn >= 1.4 |
|
| 213 | + and $v = $r1[1] |
|
| 214 | + )) |
|
| 215 | + ) { |
|
| 216 | + return -$v; |
|
| 217 | + } |
|
| 218 | + |
|
| 219 | + // Bug ou paquet fait main |
|
| 220 | + return 0; |
|
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | // La matrice est necessaire pour ne filtrer _que_ des fonctions definies dans filtres_images |
@@ -261,18 +261,18 @@ discard block |
||
| 261 | 261 | * Code HTML retourné par le filtre |
| 262 | 262 | **/ |
| 263 | 263 | function filtrer($filtre) { |
| 264 | - $tous = func_get_args(); |
|
| 265 | - if (trouver_filtre_matrice($filtre) and substr($filtre, 0, 6) == 'image_') { |
|
| 266 | - return image_filtrer($tous); |
|
| 267 | - } elseif ($f = chercher_filtre($filtre)) { |
|
| 268 | - array_shift($tous); |
|
| 269 | - return call_user_func_array($f, $tous); |
|
| 270 | - } else { |
|
| 271 | - // le filtre n'existe pas, on provoque une erreur |
|
| 272 | - $msg = array('zbug_erreur_filtre', array('filtre' => texte_script($filtre))); |
|
| 273 | - erreur_squelette($msg); |
|
| 274 | - return ''; |
|
| 275 | - } |
|
| 264 | + $tous = func_get_args(); |
|
| 265 | + if (trouver_filtre_matrice($filtre) and substr($filtre, 0, 6) == 'image_') { |
|
| 266 | + return image_filtrer($tous); |
|
| 267 | + } elseif ($f = chercher_filtre($filtre)) { |
|
| 268 | + array_shift($tous); |
|
| 269 | + return call_user_func_array($f, $tous); |
|
| 270 | + } else { |
|
| 271 | + // le filtre n'existe pas, on provoque une erreur |
|
| 272 | + $msg = array('zbug_erreur_filtre', array('filtre' => texte_script($filtre))); |
|
| 273 | + erreur_squelette($msg); |
|
| 274 | + return ''; |
|
| 275 | + } |
|
| 276 | 276 | } |
| 277 | 277 | |
| 278 | 278 | /** |
@@ -289,11 +289,11 @@ discard block |
||
| 289 | 289 | * @return bool true si on trouve le filtre dans la matrice, false sinon. |
| 290 | 290 | */ |
| 291 | 291 | function trouver_filtre_matrice($filtre) { |
| 292 | - if (isset($GLOBALS['spip_matrice'][$filtre]) and is_string($f = $GLOBALS['spip_matrice'][$filtre])) { |
|
| 293 | - find_in_path($f, '', true); |
|
| 294 | - $GLOBALS['spip_matrice'][$filtre] = true; |
|
| 295 | - } |
|
| 296 | - return !empty($GLOBALS['spip_matrice'][$filtre]); |
|
| 292 | + if (isset($GLOBALS['spip_matrice'][$filtre]) and is_string($f = $GLOBALS['spip_matrice'][$filtre])) { |
|
| 293 | + find_in_path($f, '', true); |
|
| 294 | + $GLOBALS['spip_matrice'][$filtre] = true; |
|
| 295 | + } |
|
| 296 | + return !empty($GLOBALS['spip_matrice'][$filtre]); |
|
| 297 | 297 | } |
| 298 | 298 | |
| 299 | 299 | |
@@ -321,8 +321,8 @@ discard block |
||
| 321 | 321 | * @return mixed |
| 322 | 322 | */ |
| 323 | 323 | function filtre_set(&$Pile, $val, $key, $continue = null) { |
| 324 | - $Pile['vars'][$key] = $val; |
|
| 325 | - return $continue ? $val : ''; |
|
| 324 | + $Pile['vars'][$key] = $val; |
|
| 325 | + return $continue ? $val : ''; |
|
| 326 | 326 | } |
| 327 | 327 | |
| 328 | 328 | /** |
@@ -348,8 +348,8 @@ discard block |
||
| 348 | 348 | * @return string|mixed Retourne `$val` si `$continue` présent, sinon ''. |
| 349 | 349 | */ |
| 350 | 350 | function filtre_setenv(&$Pile, $val, $key, $continue = null) { |
| 351 | - $Pile[0][$key] = $val; |
|
| 352 | - return $continue ? $val : ''; |
|
| 351 | + $Pile[0][$key] = $val; |
|
| 352 | + return $continue ? $val : ''; |
|
| 353 | 353 | } |
| 354 | 354 | |
| 355 | 355 | /** |
@@ -371,18 +371,18 @@ discard block |
||
| 371 | 371 | * @return mixed Retourne la valeur (sans la modifier). |
| 372 | 372 | */ |
| 373 | 373 | function filtre_debug($val, $key = null) { |
| 374 | - $debug = ( |
|
| 375 | - is_null($key) ? '' : (var_export($key, true) . " = ") |
|
| 376 | - ) . var_export($val, true); |
|
| 374 | + $debug = ( |
|
| 375 | + is_null($key) ? '' : (var_export($key, true) . " = ") |
|
| 376 | + ) . var_export($val, true); |
|
| 377 | 377 | |
| 378 | - include_spip('inc/autoriser'); |
|
| 379 | - if (autoriser('webmestre')) { |
|
| 380 | - echo "<div class='spip_debug'>\n", $debug, "</div>\n"; |
|
| 381 | - } |
|
| 378 | + include_spip('inc/autoriser'); |
|
| 379 | + if (autoriser('webmestre')) { |
|
| 380 | + echo "<div class='spip_debug'>\n", $debug, "</div>\n"; |
|
| 381 | + } |
|
| 382 | 382 | |
| 383 | - spip_log($debug, 'debug'); |
|
| 383 | + spip_log($debug, 'debug'); |
|
| 384 | 384 | |
| 385 | - return $val; |
|
| 385 | + return $val; |
|
| 386 | 386 | } |
| 387 | 387 | |
| 388 | 388 | |
@@ -410,71 +410,71 @@ discard block |
||
| 410 | 410 | * Texte qui a reçu les filtres |
| 411 | 411 | **/ |
| 412 | 412 | function image_filtrer($args) { |
| 413 | - $filtre = array_shift($args); # enlever $filtre |
|
| 414 | - $texte = array_shift($args); |
|
| 415 | - if (!strlen($texte)) { |
|
| 416 | - return; |
|
| 417 | - } |
|
| 418 | - find_in_path('filtres_images_mini.php', 'inc/', true); |
|
| 419 | - statut_effacer_images_temporaires(true); // activer la suppression des images temporaires car le compilo finit la chaine par un image_graver |
|
| 420 | - // Cas du nom de fichier local |
|
| 421 | - if (strpos(substr($texte, strlen(_DIR_RACINE)), '..') === false |
|
| 422 | - and !preg_match(',^/|[<>]|\s,S', $texte) |
|
| 423 | - and ( |
|
| 424 | - file_exists(preg_replace(',[?].*$,', '', $texte)) |
|
| 425 | - or tester_url_absolue($texte) |
|
| 426 | - ) |
|
| 427 | - ) { |
|
| 428 | - array_unshift($args, "<img src='$texte' />"); |
|
| 429 | - $res = call_user_func_array($filtre, $args); |
|
| 430 | - statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo |
|
| 431 | - return $res; |
|
| 432 | - } |
|
| 433 | - |
|
| 434 | - // Cas general : trier toutes les images, avec eventuellement leur <span> |
|
| 435 | - if (preg_match_all( |
|
| 436 | - ',(<([a-z]+) [^<>]*spip_documents[^<>]*>)?\s*(<img\s.*>),UimsS', |
|
| 437 | - $texte, $tags, PREG_SET_ORDER)) { |
|
| 438 | - foreach ($tags as $tag) { |
|
| 439 | - $class = extraire_attribut($tag[3], 'class'); |
|
| 440 | - if (!$class or |
|
| 441 | - (strpos($class, 'filtre_inactif') === false |
|
| 442 | - // compat historique a virer en 3.2 |
|
| 443 | - and strpos($class, 'no_image_filtrer') === false) |
|
| 444 | - ) { |
|
| 445 | - array_unshift($args, $tag[3]); |
|
| 446 | - if ($reduit = call_user_func_array($filtre, $args)) { |
|
| 447 | - // En cas de span spip_documents, modifier le style=...width: |
|
| 448 | - if ($tag[1]) { |
|
| 449 | - $w = extraire_attribut($reduit, 'width'); |
|
| 450 | - if (!$w and preg_match(",width:\s*(\d+)px,S", extraire_attribut($reduit, 'style'), $regs)) { |
|
| 451 | - $w = $regs[1]; |
|
| 452 | - } |
|
| 453 | - if ($w and ($style = extraire_attribut($tag[1], 'style'))) { |
|
| 454 | - $style = preg_replace(",width:\s*\d+px,S", "width:${w}px", $style); |
|
| 455 | - $replace = inserer_attribut($tag[1], 'style', $style); |
|
| 456 | - $texte = str_replace($tag[1], $replace, $texte); |
|
| 457 | - } |
|
| 458 | - } |
|
| 459 | - // traiter aussi un eventuel mouseover |
|
| 460 | - if ($mouseover = extraire_attribut($reduit, 'onmouseover')) { |
|
| 461 | - if (preg_match(",this[.]src=['\"]([^'\"]+)['\"],ims", $mouseover, $match)) { |
|
| 462 | - $srcover = $match[1]; |
|
| 463 | - array_shift($args); |
|
| 464 | - array_unshift($args, "<img src='" . $match[1] . "' />"); |
|
| 465 | - $srcover_filter = call_user_func_array($filtre, $args); |
|
| 466 | - $srcover_filter = extraire_attribut($srcover_filter, 'src'); |
|
| 467 | - $reduit = str_replace($srcover, $srcover_filter, $reduit); |
|
| 468 | - } |
|
| 469 | - } |
|
| 470 | - $texte = str_replace($tag[3], $reduit, $texte); |
|
| 471 | - } |
|
| 472 | - array_shift($args); |
|
| 473 | - } |
|
| 474 | - } |
|
| 475 | - } |
|
| 476 | - statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo |
|
| 477 | - return $texte; |
|
| 413 | + $filtre = array_shift($args); # enlever $filtre |
|
| 414 | + $texte = array_shift($args); |
|
| 415 | + if (!strlen($texte)) { |
|
| 416 | + return; |
|
| 417 | + } |
|
| 418 | + find_in_path('filtres_images_mini.php', 'inc/', true); |
|
| 419 | + statut_effacer_images_temporaires(true); // activer la suppression des images temporaires car le compilo finit la chaine par un image_graver |
|
| 420 | + // Cas du nom de fichier local |
|
| 421 | + if (strpos(substr($texte, strlen(_DIR_RACINE)), '..') === false |
|
| 422 | + and !preg_match(',^/|[<>]|\s,S', $texte) |
|
| 423 | + and ( |
|
| 424 | + file_exists(preg_replace(',[?].*$,', '', $texte)) |
|
| 425 | + or tester_url_absolue($texte) |
|
| 426 | + ) |
|
| 427 | + ) { |
|
| 428 | + array_unshift($args, "<img src='$texte' />"); |
|
| 429 | + $res = call_user_func_array($filtre, $args); |
|
| 430 | + statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo |
|
| 431 | + return $res; |
|
| 432 | + } |
|
| 433 | + |
|
| 434 | + // Cas general : trier toutes les images, avec eventuellement leur <span> |
|
| 435 | + if (preg_match_all( |
|
| 436 | + ',(<([a-z]+) [^<>]*spip_documents[^<>]*>)?\s*(<img\s.*>),UimsS', |
|
| 437 | + $texte, $tags, PREG_SET_ORDER)) { |
|
| 438 | + foreach ($tags as $tag) { |
|
| 439 | + $class = extraire_attribut($tag[3], 'class'); |
|
| 440 | + if (!$class or |
|
| 441 | + (strpos($class, 'filtre_inactif') === false |
|
| 442 | + // compat historique a virer en 3.2 |
|
| 443 | + and strpos($class, 'no_image_filtrer') === false) |
|
| 444 | + ) { |
|
| 445 | + array_unshift($args, $tag[3]); |
|
| 446 | + if ($reduit = call_user_func_array($filtre, $args)) { |
|
| 447 | + // En cas de span spip_documents, modifier le style=...width: |
|
| 448 | + if ($tag[1]) { |
|
| 449 | + $w = extraire_attribut($reduit, 'width'); |
|
| 450 | + if (!$w and preg_match(",width:\s*(\d+)px,S", extraire_attribut($reduit, 'style'), $regs)) { |
|
| 451 | + $w = $regs[1]; |
|
| 452 | + } |
|
| 453 | + if ($w and ($style = extraire_attribut($tag[1], 'style'))) { |
|
| 454 | + $style = preg_replace(",width:\s*\d+px,S", "width:${w}px", $style); |
|
| 455 | + $replace = inserer_attribut($tag[1], 'style', $style); |
|
| 456 | + $texte = str_replace($tag[1], $replace, $texte); |
|
| 457 | + } |
|
| 458 | + } |
|
| 459 | + // traiter aussi un eventuel mouseover |
|
| 460 | + if ($mouseover = extraire_attribut($reduit, 'onmouseover')) { |
|
| 461 | + if (preg_match(",this[.]src=['\"]([^'\"]+)['\"],ims", $mouseover, $match)) { |
|
| 462 | + $srcover = $match[1]; |
|
| 463 | + array_shift($args); |
|
| 464 | + array_unshift($args, "<img src='" . $match[1] . "' />"); |
|
| 465 | + $srcover_filter = call_user_func_array($filtre, $args); |
|
| 466 | + $srcover_filter = extraire_attribut($srcover_filter, 'src'); |
|
| 467 | + $reduit = str_replace($srcover, $srcover_filter, $reduit); |
|
| 468 | + } |
|
| 469 | + } |
|
| 470 | + $texte = str_replace($tag[3], $reduit, $texte); |
|
| 471 | + } |
|
| 472 | + array_shift($args); |
|
| 473 | + } |
|
| 474 | + } |
|
| 475 | + } |
|
| 476 | + statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo |
|
| 477 | + return $texte; |
|
| 478 | 478 | } |
| 479 | 479 | |
| 480 | 480 | /** |
@@ -489,65 +489,65 @@ discard block |
||
| 489 | 489 | **/ |
| 490 | 490 | function taille_image($img) { |
| 491 | 491 | |
| 492 | - static $largeur_img = array(), $hauteur_img = array(); |
|
| 493 | - $srcWidth = 0; |
|
| 494 | - $srcHeight = 0; |
|
| 495 | - |
|
| 496 | - $src = extraire_attribut($img, 'src'); |
|
| 497 | - |
|
| 498 | - if (!$src) { |
|
| 499 | - $src = $img; |
|
| 500 | - } else { |
|
| 501 | - $srcWidth = extraire_attribut($img, 'width'); |
|
| 502 | - $srcHeight = extraire_attribut($img, 'height'); |
|
| 503 | - } |
|
| 504 | - |
|
| 505 | - // ne jamais operer directement sur une image distante pour des raisons de perfo |
|
| 506 | - // la copie locale a toutes les chances d'etre la ou de resservir |
|
| 507 | - if (tester_url_absolue($src)) { |
|
| 508 | - include_spip('inc/distant'); |
|
| 509 | - $fichier = copie_locale($src); |
|
| 510 | - $src = $fichier ? _DIR_RACINE . $fichier : $src; |
|
| 511 | - } |
|
| 512 | - if (($p = strpos($src, '?')) !== false) { |
|
| 513 | - $src = substr($src, 0, $p); |
|
| 514 | - } |
|
| 515 | - |
|
| 516 | - $srcsize = false; |
|
| 517 | - if (isset($largeur_img[$src])) { |
|
| 518 | - $srcWidth = $largeur_img[$src]; |
|
| 519 | - } |
|
| 520 | - if (isset($hauteur_img[$src])) { |
|
| 521 | - $srcHeight = $hauteur_img[$src]; |
|
| 522 | - } |
|
| 523 | - if (!$srcWidth or !$srcHeight) { |
|
| 524 | - |
|
| 525 | - if (file_exists($src) |
|
| 526 | - and $srcsize = spip_getimagesize($src) |
|
| 527 | - ) { |
|
| 528 | - if (!$srcWidth) { |
|
| 529 | - $largeur_img[$src] = $srcWidth = $srcsize[0]; |
|
| 530 | - } |
|
| 531 | - if (!$srcHeight) { |
|
| 532 | - $hauteur_img[$src] = $srcHeight = $srcsize[1]; |
|
| 533 | - } |
|
| 534 | - } |
|
| 535 | - // $src peut etre une reference a une image temporaire dont a n'a que le log .src |
|
| 536 | - // on s'y refere, l'image sera reconstruite en temps utile si necessaire |
|
| 537 | - elseif (@file_exists($f = "$src.src") |
|
| 538 | - and lire_fichier($f, $valeurs) |
|
| 539 | - and $valeurs = unserialize($valeurs) |
|
| 540 | - ) { |
|
| 541 | - if (!$srcWidth) { |
|
| 542 | - $largeur_img[$src] = $srcWidth = $valeurs["largeur_dest"]; |
|
| 543 | - } |
|
| 544 | - if (!$srcHeight) { |
|
| 545 | - $hauteur_img[$src] = $srcHeight = $valeurs["hauteur_dest"]; |
|
| 546 | - } |
|
| 547 | - } |
|
| 548 | - } |
|
| 549 | - |
|
| 550 | - return array($srcHeight, $srcWidth); |
|
| 492 | + static $largeur_img = array(), $hauteur_img = array(); |
|
| 493 | + $srcWidth = 0; |
|
| 494 | + $srcHeight = 0; |
|
| 495 | + |
|
| 496 | + $src = extraire_attribut($img, 'src'); |
|
| 497 | + |
|
| 498 | + if (!$src) { |
|
| 499 | + $src = $img; |
|
| 500 | + } else { |
|
| 501 | + $srcWidth = extraire_attribut($img, 'width'); |
|
| 502 | + $srcHeight = extraire_attribut($img, 'height'); |
|
| 503 | + } |
|
| 504 | + |
|
| 505 | + // ne jamais operer directement sur une image distante pour des raisons de perfo |
|
| 506 | + // la copie locale a toutes les chances d'etre la ou de resservir |
|
| 507 | + if (tester_url_absolue($src)) { |
|
| 508 | + include_spip('inc/distant'); |
|
| 509 | + $fichier = copie_locale($src); |
|
| 510 | + $src = $fichier ? _DIR_RACINE . $fichier : $src; |
|
| 511 | + } |
|
| 512 | + if (($p = strpos($src, '?')) !== false) { |
|
| 513 | + $src = substr($src, 0, $p); |
|
| 514 | + } |
|
| 515 | + |
|
| 516 | + $srcsize = false; |
|
| 517 | + if (isset($largeur_img[$src])) { |
|
| 518 | + $srcWidth = $largeur_img[$src]; |
|
| 519 | + } |
|
| 520 | + if (isset($hauteur_img[$src])) { |
|
| 521 | + $srcHeight = $hauteur_img[$src]; |
|
| 522 | + } |
|
| 523 | + if (!$srcWidth or !$srcHeight) { |
|
| 524 | + |
|
| 525 | + if (file_exists($src) |
|
| 526 | + and $srcsize = spip_getimagesize($src) |
|
| 527 | + ) { |
|
| 528 | + if (!$srcWidth) { |
|
| 529 | + $largeur_img[$src] = $srcWidth = $srcsize[0]; |
|
| 530 | + } |
|
| 531 | + if (!$srcHeight) { |
|
| 532 | + $hauteur_img[$src] = $srcHeight = $srcsize[1]; |
|
| 533 | + } |
|
| 534 | + } |
|
| 535 | + // $src peut etre une reference a une image temporaire dont a n'a que le log .src |
|
| 536 | + // on s'y refere, l'image sera reconstruite en temps utile si necessaire |
|
| 537 | + elseif (@file_exists($f = "$src.src") |
|
| 538 | + and lire_fichier($f, $valeurs) |
|
| 539 | + and $valeurs = unserialize($valeurs) |
|
| 540 | + ) { |
|
| 541 | + if (!$srcWidth) { |
|
| 542 | + $largeur_img[$src] = $srcWidth = $valeurs["largeur_dest"]; |
|
| 543 | + } |
|
| 544 | + if (!$srcHeight) { |
|
| 545 | + $hauteur_img[$src] = $srcHeight = $valeurs["hauteur_dest"]; |
|
| 546 | + } |
|
| 547 | + } |
|
| 548 | + } |
|
| 549 | + |
|
| 550 | + return array($srcHeight, $srcWidth); |
|
| 551 | 551 | } |
| 552 | 552 | |
| 553 | 553 | |
@@ -565,12 +565,12 @@ discard block |
||
| 565 | 565 | * Largeur en pixels, NULL ou 0 si aucune image. |
| 566 | 566 | **/ |
| 567 | 567 | function largeur($img) { |
| 568 | - if (!$img) { |
|
| 569 | - return; |
|
| 570 | - } |
|
| 571 | - list($h, $l) = taille_image($img); |
|
| 568 | + if (!$img) { |
|
| 569 | + return; |
|
| 570 | + } |
|
| 571 | + list($h, $l) = taille_image($img); |
|
| 572 | 572 | |
| 573 | - return $l; |
|
| 573 | + return $l; |
|
| 574 | 574 | } |
| 575 | 575 | |
| 576 | 576 | /** |
@@ -587,12 +587,12 @@ discard block |
||
| 587 | 587 | * Hauteur en pixels, NULL ou 0 si aucune image. |
| 588 | 588 | **/ |
| 589 | 589 | function hauteur($img) { |
| 590 | - if (!$img) { |
|
| 591 | - return; |
|
| 592 | - } |
|
| 593 | - list($h, $l) = taille_image($img); |
|
| 590 | + if (!$img) { |
|
| 591 | + return; |
|
| 592 | + } |
|
| 593 | + list($h, $l) = taille_image($img); |
|
| 594 | 594 | |
| 595 | - return $h; |
|
| 595 | + return $h; |
|
| 596 | 596 | } |
| 597 | 597 | |
| 598 | 598 | |
@@ -612,11 +612,11 @@ discard block |
||
| 612 | 612 | * @return string |
| 613 | 613 | **/ |
| 614 | 614 | function corriger_entites_html($texte) { |
| 615 | - if (strpos($texte, '&') === false) { |
|
| 616 | - return $texte; |
|
| 617 | - } |
|
| 615 | + if (strpos($texte, '&') === false) { |
|
| 616 | + return $texte; |
|
| 617 | + } |
|
| 618 | 618 | |
| 619 | - return preg_replace(',&(#[0-9][0-9][0-9]+;|amp;),iS', '&\1', $texte); |
|
| 619 | + return preg_replace(',&(#[0-9][0-9][0-9]+;|amp;),iS', '&\1', $texte); |
|
| 620 | 620 | } |
| 621 | 621 | |
| 622 | 622 | /** |
@@ -631,11 +631,11 @@ discard block |
||
| 631 | 631 | * @return string |
| 632 | 632 | **/ |
| 633 | 633 | function corriger_toutes_entites_html($texte) { |
| 634 | - if (strpos($texte, '&') === false) { |
|
| 635 | - return $texte; |
|
| 636 | - } |
|
| 634 | + if (strpos($texte, '&') === false) { |
|
| 635 | + return $texte; |
|
| 636 | + } |
|
| 637 | 637 | |
| 638 | - return preg_replace(',&(#?[a-z0-9]+;),iS', '&\1', $texte); |
|
| 638 | + return preg_replace(',&(#?[a-z0-9]+;),iS', '&\1', $texte); |
|
| 639 | 639 | } |
| 640 | 640 | |
| 641 | 641 | /** |
@@ -645,7 +645,7 @@ discard block |
||
| 645 | 645 | * @return string |
| 646 | 646 | **/ |
| 647 | 647 | function proteger_amp($texte) { |
| 648 | - return str_replace('&', '&', $texte); |
|
| 648 | + return str_replace('&', '&', $texte); |
|
| 649 | 649 | } |
| 650 | 650 | |
| 651 | 651 | |
@@ -676,20 +676,20 @@ discard block |
||
| 676 | 676 | * @return mixed|string |
| 677 | 677 | */ |
| 678 | 678 | function entites_html($texte, $tout = false, $quote = true) { |
| 679 | - if (!is_string($texte) or !$texte |
|
| 680 | - or strpbrk($texte, "&\"'<>") == false |
|
| 681 | - ) { |
|
| 682 | - return $texte; |
|
| 683 | - } |
|
| 684 | - include_spip('inc/texte'); |
|
| 685 | - $flags = ($quote ? ENT_QUOTES : ENT_NOQUOTES); |
|
| 686 | - $flags |= ENT_HTML401; |
|
| 687 | - $texte = spip_htmlspecialchars(echappe_retour(echappe_html($texte, '', true), '', 'proteger_amp'), $flags); |
|
| 688 | - if ($tout) { |
|
| 689 | - return corriger_toutes_entites_html($texte); |
|
| 690 | - } else { |
|
| 691 | - return corriger_entites_html($texte); |
|
| 692 | - } |
|
| 679 | + if (!is_string($texte) or !$texte |
|
| 680 | + or strpbrk($texte, "&\"'<>") == false |
|
| 681 | + ) { |
|
| 682 | + return $texte; |
|
| 683 | + } |
|
| 684 | + include_spip('inc/texte'); |
|
| 685 | + $flags = ($quote ? ENT_QUOTES : ENT_NOQUOTES); |
|
| 686 | + $flags |= ENT_HTML401; |
|
| 687 | + $texte = spip_htmlspecialchars(echappe_retour(echappe_html($texte, '', true), '', 'proteger_amp'), $flags); |
|
| 688 | + if ($tout) { |
|
| 689 | + return corriger_toutes_entites_html($texte); |
|
| 690 | + } else { |
|
| 691 | + return corriger_entites_html($texte); |
|
| 692 | + } |
|
| 693 | 693 | } |
| 694 | 694 | |
| 695 | 695 | /** |
@@ -708,37 +708,37 @@ discard block |
||
| 708 | 708 | * Texte converti |
| 709 | 709 | **/ |
| 710 | 710 | function filtrer_entites($texte) { |
| 711 | - if (strpos($texte, '&') === false) { |
|
| 712 | - return $texte; |
|
| 713 | - } |
|
| 714 | - // filtrer |
|
| 715 | - $texte = html2unicode($texte); |
|
| 716 | - // remettre le tout dans le charset cible |
|
| 717 | - $texte = unicode2charset($texte); |
|
| 718 | - // cas particulier des " et ' qu'il faut filtrer aussi |
|
| 719 | - // (on le faisait deja avec un ") |
|
| 720 | - if (strpos($texte, "&#") !== false) { |
|
| 721 | - $texte = str_replace(array("'", "'", """, """), array("'", "'", '"', '"'), $texte); |
|
| 722 | - } |
|
| 711 | + if (strpos($texte, '&') === false) { |
|
| 712 | + return $texte; |
|
| 713 | + } |
|
| 714 | + // filtrer |
|
| 715 | + $texte = html2unicode($texte); |
|
| 716 | + // remettre le tout dans le charset cible |
|
| 717 | + $texte = unicode2charset($texte); |
|
| 718 | + // cas particulier des " et ' qu'il faut filtrer aussi |
|
| 719 | + // (on le faisait deja avec un ") |
|
| 720 | + if (strpos($texte, "&#") !== false) { |
|
| 721 | + $texte = str_replace(array("'", "'", """, """), array("'", "'", '"', '"'), $texte); |
|
| 722 | + } |
|
| 723 | 723 | |
| 724 | - return $texte; |
|
| 724 | + return $texte; |
|
| 725 | 725 | } |
| 726 | 726 | |
| 727 | 727 | |
| 728 | 728 | if (!function_exists('filtre_filtrer_entites_dist')) { |
| 729 | - /** |
|
| 730 | - * Version sécurisée de filtrer_entites |
|
| 731 | - * |
|
| 732 | - * @uses interdire_scripts() |
|
| 733 | - * @uses filtrer_entites() |
|
| 734 | - * |
|
| 735 | - * @param string $t |
|
| 736 | - * @return string |
|
| 737 | - */ |
|
| 738 | - function filtre_filtrer_entites_dist($t) { |
|
| 739 | - include_spip('inc/texte'); |
|
| 740 | - return interdire_scripts(filtrer_entites($t)); |
|
| 741 | - } |
|
| 729 | + /** |
|
| 730 | + * Version sécurisée de filtrer_entites |
|
| 731 | + * |
|
| 732 | + * @uses interdire_scripts() |
|
| 733 | + * @uses filtrer_entites() |
|
| 734 | + * |
|
| 735 | + * @param string $t |
|
| 736 | + * @return string |
|
| 737 | + */ |
|
| 738 | + function filtre_filtrer_entites_dist($t) { |
|
| 739 | + include_spip('inc/texte'); |
|
| 740 | + return interdire_scripts(filtrer_entites($t)); |
|
| 741 | + } |
|
| 742 | 742 | } |
| 743 | 743 | |
| 744 | 744 | |
@@ -753,18 +753,18 @@ discard block |
||
| 753 | 753 | * @return string|array |
| 754 | 754 | **/ |
| 755 | 755 | function supprimer_caracteres_illegaux($texte) { |
| 756 | - static $from = "\x0\x1\x2\x3\x4\x5\x6\x7\x8\xB\xC\xE\xF\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"; |
|
| 757 | - static $to = null; |
|
| 756 | + static $from = "\x0\x1\x2\x3\x4\x5\x6\x7\x8\xB\xC\xE\xF\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"; |
|
| 757 | + static $to = null; |
|
| 758 | 758 | |
| 759 | - if (is_array($texte)) { |
|
| 760 | - return array_map('supprimer_caracteres_illegaux', $texte); |
|
| 761 | - } |
|
| 759 | + if (is_array($texte)) { |
|
| 760 | + return array_map('supprimer_caracteres_illegaux', $texte); |
|
| 761 | + } |
|
| 762 | 762 | |
| 763 | - if (!$to) { |
|
| 764 | - $to = str_repeat('-', strlen($from)); |
|
| 765 | - } |
|
| 763 | + if (!$to) { |
|
| 764 | + $to = str_repeat('-', strlen($from)); |
|
| 765 | + } |
|
| 766 | 766 | |
| 767 | - return strtr($texte, $from, $to); |
|
| 767 | + return strtr($texte, $from, $to); |
|
| 768 | 768 | } |
| 769 | 769 | |
| 770 | 770 | /** |
@@ -776,10 +776,10 @@ discard block |
||
| 776 | 776 | * @return string|array |
| 777 | 777 | **/ |
| 778 | 778 | function corriger_caracteres($texte) { |
| 779 | - $texte = corriger_caracteres_windows($texte); |
|
| 780 | - $texte = supprimer_caracteres_illegaux($texte); |
|
| 779 | + $texte = corriger_caracteres_windows($texte); |
|
| 780 | + $texte = supprimer_caracteres_illegaux($texte); |
|
| 781 | 781 | |
| 782 | - return $texte; |
|
| 782 | + return $texte; |
|
| 783 | 783 | } |
| 784 | 784 | |
| 785 | 785 | /** |
@@ -797,40 +797,40 @@ discard block |
||
| 797 | 797 | */ |
| 798 | 798 | function texte_backend($texte) { |
| 799 | 799 | |
| 800 | - static $apostrophe = array("’", "'"); # n'allouer qu'une fois |
|
| 800 | + static $apostrophe = array("’", "'"); # n'allouer qu'une fois |
|
| 801 | 801 | |
| 802 | - // si on a des liens ou des images, les passer en absolu |
|
| 803 | - $texte = liens_absolus($texte); |
|
| 802 | + // si on a des liens ou des images, les passer en absolu |
|
| 803 | + $texte = liens_absolus($texte); |
|
| 804 | 804 | |
| 805 | - // echapper les tags > < |
|
| 806 | - $texte = preg_replace(',&(gt|lt);,S', '&\1;', $texte); |
|
| 805 | + // echapper les tags > < |
|
| 806 | + $texte = preg_replace(',&(gt|lt);,S', '&\1;', $texte); |
|
| 807 | 807 | |
| 808 | - // importer les é |
|
| 809 | - $texte = filtrer_entites($texte); |
|
| 808 | + // importer les é |
|
| 809 | + $texte = filtrer_entites($texte); |
|
| 810 | 810 | |
| 811 | - // " -> " et tout ce genre de choses |
|
| 812 | - $u = $GLOBALS['meta']['pcre_u']; |
|
| 813 | - $texte = str_replace(" ", " ", $texte); |
|
| 814 | - $texte = preg_replace('/\s{2,}/S' . $u, " ", $texte); |
|
| 815 | - // ne pas echapper les sinqle quotes car certains outils de syndication gerent mal |
|
| 816 | - $texte = entites_html($texte, false, false); |
|
| 817 | - // mais bien echapper les double quotes ! |
|
| 818 | - $texte = str_replace('"', '"', $texte); |
|
| 811 | + // " -> " et tout ce genre de choses |
|
| 812 | + $u = $GLOBALS['meta']['pcre_u']; |
|
| 813 | + $texte = str_replace(" ", " ", $texte); |
|
| 814 | + $texte = preg_replace('/\s{2,}/S' . $u, " ", $texte); |
|
| 815 | + // ne pas echapper les sinqle quotes car certains outils de syndication gerent mal |
|
| 816 | + $texte = entites_html($texte, false, false); |
|
| 817 | + // mais bien echapper les double quotes ! |
|
| 818 | + $texte = str_replace('"', '"', $texte); |
|
| 819 | 819 | |
| 820 | - // verifier le charset |
|
| 821 | - $texte = charset2unicode($texte); |
|
| 820 | + // verifier le charset |
|
| 821 | + $texte = charset2unicode($texte); |
|
| 822 | 822 | |
| 823 | - // Caracteres problematiques en iso-latin 1 |
|
| 824 | - if (isset($GLOBALS['meta']['charset']) and $GLOBALS['meta']['charset'] == 'iso-8859-1') { |
|
| 825 | - $texte = str_replace(chr(156), 'œ', $texte); |
|
| 826 | - $texte = str_replace(chr(140), 'Œ', $texte); |
|
| 827 | - $texte = str_replace(chr(159), 'Ÿ', $texte); |
|
| 828 | - } |
|
| 823 | + // Caracteres problematiques en iso-latin 1 |
|
| 824 | + if (isset($GLOBALS['meta']['charset']) and $GLOBALS['meta']['charset'] == 'iso-8859-1') { |
|
| 825 | + $texte = str_replace(chr(156), 'œ', $texte); |
|
| 826 | + $texte = str_replace(chr(140), 'Œ', $texte); |
|
| 827 | + $texte = str_replace(chr(159), 'Ÿ', $texte); |
|
| 828 | + } |
|
| 829 | 829 | |
| 830 | - // l'apostrophe curly pose probleme a certains lecteure de RSS |
|
| 831 | - // et le caractere apostrophe alourdit les squelettes avec PHP |
|
| 832 | - // ==> on les remplace par l'entite HTML |
|
| 833 | - return str_replace($apostrophe, "'", $texte); |
|
| 830 | + // l'apostrophe curly pose probleme a certains lecteure de RSS |
|
| 831 | + // et le caractere apostrophe alourdit les squelettes avec PHP |
|
| 832 | + // ==> on les remplace par l'entite HTML |
|
| 833 | + return str_replace($apostrophe, "'", $texte); |
|
| 834 | 834 | } |
| 835 | 835 | |
| 836 | 836 | /** |
@@ -847,7 +847,7 @@ discard block |
||
| 847 | 847 | * Texte encodé et quote pour XML |
| 848 | 848 | */ |
| 849 | 849 | function texte_backendq($texte) { |
| 850 | - return addslashes(texte_backend($texte)); |
|
| 850 | + return addslashes(texte_backend($texte)); |
|
| 851 | 851 | } |
| 852 | 852 | |
| 853 | 853 | |
@@ -870,9 +870,9 @@ discard block |
||
| 870 | 870 | * Numéro de titre, sinon chaîne vide |
| 871 | 871 | **/ |
| 872 | 872 | function supprimer_numero($texte) { |
| 873 | - return preg_replace( |
|
| 874 | - ",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S", |
|
| 875 | - "", $texte); |
|
| 873 | + return preg_replace( |
|
| 874 | + ",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S", |
|
| 875 | + "", $texte); |
|
| 876 | 876 | } |
| 877 | 877 | |
| 878 | 878 | /** |
@@ -895,13 +895,13 @@ discard block |
||
| 895 | 895 | * Numéro de titre, sinon chaîne vide |
| 896 | 896 | **/ |
| 897 | 897 | function recuperer_numero($texte) { |
| 898 | - if (preg_match( |
|
| 899 | - ",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S", |
|
| 900 | - $texte, $regs)) { |
|
| 901 | - return strval($regs[1]); |
|
| 902 | - } else { |
|
| 903 | - return ''; |
|
| 904 | - } |
|
| 898 | + if (preg_match( |
|
| 899 | + ",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S", |
|
| 900 | + $texte, $regs)) { |
|
| 901 | + return strval($regs[1]); |
|
| 902 | + } else { |
|
| 903 | + return ''; |
|
| 904 | + } |
|
| 905 | 905 | } |
| 906 | 906 | |
| 907 | 907 | /** |
@@ -928,13 +928,13 @@ discard block |
||
| 928 | 928 | * Texte converti |
| 929 | 929 | **/ |
| 930 | 930 | function supprimer_tags($texte, $rempl = "") { |
| 931 | - $texte = preg_replace(",<(!--|\w|/|!\[endif|!\[if)[^>]*>,US", $rempl, $texte); |
|
| 932 | - // ne pas oublier un < final non ferme car coupe |
|
| 933 | - $texte = preg_replace(",<(!--|\w|/).*$,US", $rempl, $texte); |
|
| 934 | - // mais qui peut aussi etre un simple signe plus petit que |
|
| 935 | - $texte = str_replace('<', '<', $texte); |
|
| 931 | + $texte = preg_replace(",<(!--|\w|/|!\[endif|!\[if)[^>]*>,US", $rempl, $texte); |
|
| 932 | + // ne pas oublier un < final non ferme car coupe |
|
| 933 | + $texte = preg_replace(",<(!--|\w|/).*$,US", $rempl, $texte); |
|
| 934 | + // mais qui peut aussi etre un simple signe plus petit que |
|
| 935 | + $texte = str_replace('<', '<', $texte); |
|
| 936 | 936 | |
| 937 | - return $texte; |
|
| 937 | + return $texte; |
|
| 938 | 938 | } |
| 939 | 939 | |
| 940 | 940 | /** |
@@ -957,9 +957,9 @@ discard block |
||
| 957 | 957 | * Texte converti |
| 958 | 958 | **/ |
| 959 | 959 | function echapper_tags($texte, $rempl = "") { |
| 960 | - $texte = preg_replace("/<([^>]*)>/", "<\\1>", $texte); |
|
| 960 | + $texte = preg_replace("/<([^>]*)>/", "<\\1>", $texte); |
|
| 961 | 961 | |
| 962 | - return $texte; |
|
| 962 | + return $texte; |
|
| 963 | 963 | } |
| 964 | 964 | |
| 965 | 965 | /** |
@@ -980,18 +980,18 @@ discard block |
||
| 980 | 980 | * Texte converti |
| 981 | 981 | **/ |
| 982 | 982 | function textebrut($texte) { |
| 983 | - $u = $GLOBALS['meta']['pcre_u']; |
|
| 984 | - $texte = preg_replace('/\s+/S' . $u, " ", $texte); |
|
| 985 | - $texte = preg_replace("/<(p|br)( [^>]*)?" . ">/iS", "\n\n", $texte); |
|
| 986 | - $texte = preg_replace("/^\n+/", "", $texte); |
|
| 987 | - $texte = preg_replace("/\n+$/", "", $texte); |
|
| 988 | - $texte = preg_replace("/\n +/", "\n", $texte); |
|
| 989 | - $texte = supprimer_tags($texte); |
|
| 990 | - $texte = preg_replace("/( | )+/S", " ", $texte); |
|
| 991 | - // nettoyer l'apostrophe curly qui pose probleme a certains rss-readers, lecteurs de mail... |
|
| 992 | - $texte = str_replace("’", "'", $texte); |
|
| 983 | + $u = $GLOBALS['meta']['pcre_u']; |
|
| 984 | + $texte = preg_replace('/\s+/S' . $u, " ", $texte); |
|
| 985 | + $texte = preg_replace("/<(p|br)( [^>]*)?" . ">/iS", "\n\n", $texte); |
|
| 986 | + $texte = preg_replace("/^\n+/", "", $texte); |
|
| 987 | + $texte = preg_replace("/\n+$/", "", $texte); |
|
| 988 | + $texte = preg_replace("/\n +/", "\n", $texte); |
|
| 989 | + $texte = supprimer_tags($texte); |
|
| 990 | + $texte = preg_replace("/( | )+/S", " ", $texte); |
|
| 991 | + // nettoyer l'apostrophe curly qui pose probleme a certains rss-readers, lecteurs de mail... |
|
| 992 | + $texte = str_replace("’", "'", $texte); |
|
| 993 | 993 | |
| 994 | - return $texte; |
|
| 994 | + return $texte; |
|
| 995 | 995 | } |
| 996 | 996 | |
| 997 | 997 | |
@@ -1007,17 +1007,17 @@ discard block |
||
| 1007 | 1007 | * Texte avec liens ouvrants |
| 1008 | 1008 | **/ |
| 1009 | 1009 | function liens_ouvrants($texte) { |
| 1010 | - if (preg_match_all(",(<a\s+[^>]*https?://[^>]*class=[\"']spip_(out|url)\b[^>]+>),imsS", |
|
| 1011 | - $texte, $liens, PREG_PATTERN_ORDER)) { |
|
| 1012 | - foreach ($liens[0] as $a) { |
|
| 1013 | - $rel = 'noopener noreferrer ' . extraire_attribut($a, 'rel'); |
|
| 1014 | - $ablank = inserer_attribut($a, 'rel', $rel); |
|
| 1015 | - $ablank = inserer_attribut($ablank, 'target', '_blank'); |
|
| 1016 | - $texte = str_replace($a, $ablank, $texte); |
|
| 1017 | - } |
|
| 1018 | - } |
|
| 1010 | + if (preg_match_all(",(<a\s+[^>]*https?://[^>]*class=[\"']spip_(out|url)\b[^>]+>),imsS", |
|
| 1011 | + $texte, $liens, PREG_PATTERN_ORDER)) { |
|
| 1012 | + foreach ($liens[0] as $a) { |
|
| 1013 | + $rel = 'noopener noreferrer ' . extraire_attribut($a, 'rel'); |
|
| 1014 | + $ablank = inserer_attribut($a, 'rel', $rel); |
|
| 1015 | + $ablank = inserer_attribut($ablank, 'target', '_blank'); |
|
| 1016 | + $texte = str_replace($a, $ablank, $texte); |
|
| 1017 | + } |
|
| 1018 | + } |
|
| 1019 | 1019 | |
| 1020 | - return $texte; |
|
| 1020 | + return $texte; |
|
| 1021 | 1021 | } |
| 1022 | 1022 | |
| 1023 | 1023 | /** |
@@ -1027,22 +1027,22 @@ discard block |
||
| 1027 | 1027 | * @return string |
| 1028 | 1028 | */ |
| 1029 | 1029 | function liens_nofollow($texte) { |
| 1030 | - if (stripos($texte, "<a") === false) { |
|
| 1031 | - return $texte; |
|
| 1032 | - } |
|
| 1030 | + if (stripos($texte, "<a") === false) { |
|
| 1031 | + return $texte; |
|
| 1032 | + } |
|
| 1033 | 1033 | |
| 1034 | - if (preg_match_all(",<a\b[^>]*>,UimsS", $texte, $regs, PREG_PATTERN_ORDER)) { |
|
| 1035 | - foreach ($regs[0] as $a) { |
|
| 1036 | - $rel = extraire_attribut($a, "rel"); |
|
| 1037 | - if (strpos($rel, "nofollow") === false) { |
|
| 1038 | - $rel = "nofollow" . ($rel ? " $rel" : ""); |
|
| 1039 | - $anofollow = inserer_attribut($a, "rel", $rel); |
|
| 1040 | - $texte = str_replace($a, $anofollow, $texte); |
|
| 1041 | - } |
|
| 1042 | - } |
|
| 1043 | - } |
|
| 1034 | + if (preg_match_all(",<a\b[^>]*>,UimsS", $texte, $regs, PREG_PATTERN_ORDER)) { |
|
| 1035 | + foreach ($regs[0] as $a) { |
|
| 1036 | + $rel = extraire_attribut($a, "rel"); |
|
| 1037 | + if (strpos($rel, "nofollow") === false) { |
|
| 1038 | + $rel = "nofollow" . ($rel ? " $rel" : ""); |
|
| 1039 | + $anofollow = inserer_attribut($a, "rel", $rel); |
|
| 1040 | + $texte = str_replace($a, $anofollow, $texte); |
|
| 1041 | + } |
|
| 1042 | + } |
|
| 1043 | + } |
|
| 1044 | 1044 | |
| 1045 | - return $texte; |
|
| 1045 | + return $texte; |
|
| 1046 | 1046 | } |
| 1047 | 1047 | |
| 1048 | 1048 | /** |
@@ -1061,12 +1061,12 @@ discard block |
||
| 1061 | 1061 | * Texte sans paraghaphes |
| 1062 | 1062 | **/ |
| 1063 | 1063 | function PtoBR($texte) { |
| 1064 | - $u = $GLOBALS['meta']['pcre_u']; |
|
| 1065 | - $texte = preg_replace("@</p>@iS", "\n", $texte); |
|
| 1066 | - $texte = preg_replace("@<p\b.*>@UiS", "<br />", $texte); |
|
| 1067 | - $texte = preg_replace("@^\s*<br />@S" . $u, "", $texte); |
|
| 1064 | + $u = $GLOBALS['meta']['pcre_u']; |
|
| 1065 | + $texte = preg_replace("@</p>@iS", "\n", $texte); |
|
| 1066 | + $texte = preg_replace("@<p\b.*>@UiS", "<br />", $texte); |
|
| 1067 | + $texte = preg_replace("@^\s*<br />@S" . $u, "", $texte); |
|
| 1068 | 1068 | |
| 1069 | - return $texte; |
|
| 1069 | + return $texte; |
|
| 1070 | 1070 | } |
| 1071 | 1071 | |
| 1072 | 1072 | |
@@ -1090,14 +1090,14 @@ discard block |
||
| 1090 | 1090 | * @return string Texte encadré du style CSS |
| 1091 | 1091 | */ |
| 1092 | 1092 | function lignes_longues($texte) { |
| 1093 | - if (!strlen(trim($texte))) { |
|
| 1094 | - return $texte; |
|
| 1095 | - } |
|
| 1096 | - include_spip('inc/texte'); |
|
| 1097 | - $tag = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $texte) ? |
|
| 1098 | - 'div' : 'span'; |
|
| 1093 | + if (!strlen(trim($texte))) { |
|
| 1094 | + return $texte; |
|
| 1095 | + } |
|
| 1096 | + include_spip('inc/texte'); |
|
| 1097 | + $tag = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $texte) ? |
|
| 1098 | + 'div' : 'span'; |
|
| 1099 | 1099 | |
| 1100 | - return "<$tag style='word-wrap:break-word;'>$texte</$tag>"; |
|
| 1100 | + return "<$tag style='word-wrap:break-word;'>$texte</$tag>"; |
|
| 1101 | 1101 | } |
| 1102 | 1102 | |
| 1103 | 1103 | /** |
@@ -1116,30 +1116,30 @@ discard block |
||
| 1116 | 1116 | * @return string Texte en majuscule |
| 1117 | 1117 | */ |
| 1118 | 1118 | function majuscules($texte) { |
| 1119 | - if (!strlen($texte)) { |
|
| 1120 | - return ''; |
|
| 1121 | - } |
|
| 1119 | + if (!strlen($texte)) { |
|
| 1120 | + return ''; |
|
| 1121 | + } |
|
| 1122 | 1122 | |
| 1123 | - // Cas du turc |
|
| 1124 | - if ($GLOBALS['spip_lang'] == 'tr') { |
|
| 1125 | - # remplacer hors des tags et des entites |
|
| 1126 | - if (preg_match_all(',<[^<>]+>|&[^;]+;,S', $texte, $regs, PREG_SET_ORDER)) { |
|
| 1127 | - foreach ($regs as $n => $match) { |
|
| 1128 | - $texte = str_replace($match[0], "@@SPIP_TURC$n@@", $texte); |
|
| 1129 | - } |
|
| 1130 | - } |
|
| 1123 | + // Cas du turc |
|
| 1124 | + if ($GLOBALS['spip_lang'] == 'tr') { |
|
| 1125 | + # remplacer hors des tags et des entites |
|
| 1126 | + if (preg_match_all(',<[^<>]+>|&[^;]+;,S', $texte, $regs, PREG_SET_ORDER)) { |
|
| 1127 | + foreach ($regs as $n => $match) { |
|
| 1128 | + $texte = str_replace($match[0], "@@SPIP_TURC$n@@", $texte); |
|
| 1129 | + } |
|
| 1130 | + } |
|
| 1131 | 1131 | |
| 1132 | - $texte = str_replace('i', 'İ', $texte); |
|
| 1132 | + $texte = str_replace('i', 'İ', $texte); |
|
| 1133 | 1133 | |
| 1134 | - if ($regs) { |
|
| 1135 | - foreach ($regs as $n => $match) { |
|
| 1136 | - $texte = str_replace("@@SPIP_TURC$n@@", $match[0], $texte); |
|
| 1137 | - } |
|
| 1138 | - } |
|
| 1139 | - } |
|
| 1134 | + if ($regs) { |
|
| 1135 | + foreach ($regs as $n => $match) { |
|
| 1136 | + $texte = str_replace("@@SPIP_TURC$n@@", $match[0], $texte); |
|
| 1137 | + } |
|
| 1138 | + } |
|
| 1139 | + } |
|
| 1140 | 1140 | |
| 1141 | - // Cas general |
|
| 1142 | - return "<span style='text-transform: uppercase;'>$texte</span>"; |
|
| 1141 | + // Cas general |
|
| 1142 | + return "<span style='text-transform: uppercase;'>$texte</span>"; |
|
| 1143 | 1143 | } |
| 1144 | 1144 | |
| 1145 | 1145 | /** |
@@ -1157,29 +1157,29 @@ discard block |
||
| 1157 | 1157 | * @return string |
| 1158 | 1158 | **/ |
| 1159 | 1159 | function taille_en_octets($taille) { |
| 1160 | - if (!defined('_KILOBYTE')) { |
|
| 1161 | - /** |
|
| 1162 | - * Définit le nombre d'octets dans un Kilobyte |
|
| 1163 | - * |
|
| 1164 | - * @var int |
|
| 1165 | - **/ |
|
| 1166 | - define('_KILOBYTE', 1024); |
|
| 1167 | - } |
|
| 1160 | + if (!defined('_KILOBYTE')) { |
|
| 1161 | + /** |
|
| 1162 | + * Définit le nombre d'octets dans un Kilobyte |
|
| 1163 | + * |
|
| 1164 | + * @var int |
|
| 1165 | + **/ |
|
| 1166 | + define('_KILOBYTE', 1024); |
|
| 1167 | + } |
|
| 1168 | 1168 | |
| 1169 | - if ($taille < 1) { |
|
| 1170 | - return ''; |
|
| 1171 | - } |
|
| 1172 | - if ($taille < _KILOBYTE) { |
|
| 1173 | - $taille = _T('taille_octets', array('taille' => $taille)); |
|
| 1174 | - } elseif ($taille < _KILOBYTE * _KILOBYTE) { |
|
| 1175 | - $taille = _T('taille_ko', array('taille' => round($taille / _KILOBYTE, 1))); |
|
| 1176 | - } elseif ($taille < _KILOBYTE * _KILOBYTE * _KILOBYTE) { |
|
| 1177 | - $taille = _T('taille_mo', array('taille' => round($taille / _KILOBYTE / _KILOBYTE, 1))); |
|
| 1178 | - } else { |
|
| 1179 | - $taille = _T('taille_go', array('taille' => round($taille / _KILOBYTE / _KILOBYTE / _KILOBYTE, 2))); |
|
| 1180 | - } |
|
| 1169 | + if ($taille < 1) { |
|
| 1170 | + return ''; |
|
| 1171 | + } |
|
| 1172 | + if ($taille < _KILOBYTE) { |
|
| 1173 | + $taille = _T('taille_octets', array('taille' => $taille)); |
|
| 1174 | + } elseif ($taille < _KILOBYTE * _KILOBYTE) { |
|
| 1175 | + $taille = _T('taille_ko', array('taille' => round($taille / _KILOBYTE, 1))); |
|
| 1176 | + } elseif ($taille < _KILOBYTE * _KILOBYTE * _KILOBYTE) { |
|
| 1177 | + $taille = _T('taille_mo', array('taille' => round($taille / _KILOBYTE / _KILOBYTE, 1))); |
|
| 1178 | + } else { |
|
| 1179 | + $taille = _T('taille_go', array('taille' => round($taille / _KILOBYTE / _KILOBYTE / _KILOBYTE, 2))); |
|
| 1180 | + } |
|
| 1181 | 1181 | |
| 1182 | - return $taille; |
|
| 1182 | + return $taille; |
|
| 1183 | 1183 | } |
| 1184 | 1184 | |
| 1185 | 1185 | |
@@ -1201,15 +1201,15 @@ discard block |
||
| 1201 | 1201 | * Texte prêt pour être utilisé en attribut HTML |
| 1202 | 1202 | **/ |
| 1203 | 1203 | function attribut_html($texte, $textebrut = true) { |
| 1204 | - $u = $GLOBALS['meta']['pcre_u']; |
|
| 1205 | - if ($textebrut) { |
|
| 1206 | - $texte = preg_replace(array(",\n,", ",\s(?=\s),msS" . $u), array(" ", ""), textebrut($texte)); |
|
| 1207 | - } |
|
| 1208 | - $texte = texte_backend($texte); |
|
| 1209 | - $texte = str_replace(array("'", '"'), array(''', '"'), $texte); |
|
| 1204 | + $u = $GLOBALS['meta']['pcre_u']; |
|
| 1205 | + if ($textebrut) { |
|
| 1206 | + $texte = preg_replace(array(",\n,", ",\s(?=\s),msS" . $u), array(" ", ""), textebrut($texte)); |
|
| 1207 | + } |
|
| 1208 | + $texte = texte_backend($texte); |
|
| 1209 | + $texte = str_replace(array("'", '"'), array(''', '"'), $texte); |
|
| 1210 | 1210 | |
| 1211 | - return preg_replace(array("/&(amp;|#38;)/", "/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,5};)/"), array("&", "&"), |
|
| 1212 | - $texte); |
|
| 1211 | + return preg_replace(array("/&(amp;|#38;)/", "/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,5};)/"), array("&", "&"), |
|
| 1212 | + $texte); |
|
| 1213 | 1213 | } |
| 1214 | 1214 | |
| 1215 | 1215 | |
@@ -1229,12 +1229,12 @@ discard block |
||
| 1229 | 1229 | * URL ou chaîne vide |
| 1230 | 1230 | **/ |
| 1231 | 1231 | function vider_url($url, $entites = true) { |
| 1232 | - # un message pour abs_url |
|
| 1233 | - $GLOBALS['mode_abs_url'] = 'url'; |
|
| 1234 | - $url = trim($url); |
|
| 1235 | - $r = ",^(?:" . _PROTOCOLES_STD . '):?/?/?$,iS'; |
|
| 1232 | + # un message pour abs_url |
|
| 1233 | + $GLOBALS['mode_abs_url'] = 'url'; |
|
| 1234 | + $url = trim($url); |
|
| 1235 | + $r = ",^(?:" . _PROTOCOLES_STD . '):?/?/?$,iS'; |
|
| 1236 | 1236 | |
| 1237 | - return preg_match($r, $url) ? '' : ($entites ? entites_html($url) : $url); |
|
| 1237 | + return preg_match($r, $url) ? '' : ($entites ? entites_html($url) : $url); |
|
| 1238 | 1238 | } |
| 1239 | 1239 | |
| 1240 | 1240 | |
@@ -1249,10 +1249,10 @@ discard block |
||
| 1249 | 1249 | * @return string Adresse email maquillée |
| 1250 | 1250 | **/ |
| 1251 | 1251 | function antispam($texte) { |
| 1252 | - include_spip('inc/acces'); |
|
| 1253 | - $masque = creer_pass_aleatoire(3); |
|
| 1252 | + include_spip('inc/acces'); |
|
| 1253 | + $masque = creer_pass_aleatoire(3); |
|
| 1254 | 1254 | |
| 1255 | - return preg_replace("/@/", " $masque ", $texte); |
|
| 1255 | + return preg_replace("/@/", " $masque ", $texte); |
|
| 1256 | 1256 | } |
| 1257 | 1257 | |
| 1258 | 1258 | /** |
@@ -1284,12 +1284,12 @@ discard block |
||
| 1284 | 1284 | * True si on a le droit d'accès, false sinon. |
| 1285 | 1285 | **/ |
| 1286 | 1286 | function securiser_acces($id_auteur, $cle, $dir, $op = '', $args = '') { |
| 1287 | - include_spip('inc/acces'); |
|
| 1288 | - if ($op) { |
|
| 1289 | - $dir .= " $op $args"; |
|
| 1290 | - } |
|
| 1287 | + include_spip('inc/acces'); |
|
| 1288 | + if ($op) { |
|
| 1289 | + $dir .= " $op $args"; |
|
| 1290 | + } |
|
| 1291 | 1291 | |
| 1292 | - return verifier_low_sec($id_auteur, $cle, $dir); |
|
| 1292 | + return verifier_low_sec($id_auteur, $cle, $dir); |
|
| 1293 | 1293 | } |
| 1294 | 1294 | |
| 1295 | 1295 | /** |
@@ -1314,11 +1314,11 @@ discard block |
||
| 1314 | 1314 | * Retourne $texte, sinon $sinon. |
| 1315 | 1315 | **/ |
| 1316 | 1316 | function sinon($texte, $sinon = '') { |
| 1317 | - if ($texte or (!is_array($texte) and strlen($texte))) { |
|
| 1318 | - return $texte; |
|
| 1319 | - } else { |
|
| 1320 | - return $sinon; |
|
| 1321 | - } |
|
| 1317 | + if ($texte or (!is_array($texte) and strlen($texte))) { |
|
| 1318 | + return $texte; |
|
| 1319 | + } else { |
|
| 1320 | + return $sinon; |
|
| 1321 | + } |
|
| 1322 | 1322 | } |
| 1323 | 1323 | |
| 1324 | 1324 | /** |
@@ -1342,7 +1342,7 @@ discard block |
||
| 1342 | 1342 | * @return mixed |
| 1343 | 1343 | **/ |
| 1344 | 1344 | function choixsivide($a, $vide, $pasvide) { |
| 1345 | - return $a ? $pasvide : $vide; |
|
| 1345 | + return $a ? $pasvide : $vide; |
|
| 1346 | 1346 | } |
| 1347 | 1347 | |
| 1348 | 1348 | /** |
@@ -1366,7 +1366,7 @@ discard block |
||
| 1366 | 1366 | * @return mixed |
| 1367 | 1367 | **/ |
| 1368 | 1368 | function choixsiegal($a1, $a2, $v, $f) { |
| 1369 | - return ($a1 == $a2) ? $v : $f; |
|
| 1369 | + return ($a1 == $a2) ? $v : $f; |
|
| 1370 | 1370 | } |
| 1371 | 1371 | |
| 1372 | 1372 | // |
@@ -1385,13 +1385,13 @@ discard block |
||
| 1385 | 1385 | * @return string |
| 1386 | 1386 | **/ |
| 1387 | 1387 | function filtrer_ical($texte) { |
| 1388 | - #include_spip('inc/charsets'); |
|
| 1389 | - $texte = html2unicode($texte); |
|
| 1390 | - $texte = unicode2charset(charset2unicode($texte, $GLOBALS['meta']['charset'], 1), 'utf-8'); |
|
| 1391 | - $texte = preg_replace("/\n/", " ", $texte); |
|
| 1392 | - $texte = preg_replace("/,/", "\,", $texte); |
|
| 1388 | + #include_spip('inc/charsets'); |
|
| 1389 | + $texte = html2unicode($texte); |
|
| 1390 | + $texte = unicode2charset(charset2unicode($texte, $GLOBALS['meta']['charset'], 1), 'utf-8'); |
|
| 1391 | + $texte = preg_replace("/\n/", " ", $texte); |
|
| 1392 | + $texte = preg_replace("/,/", "\,", $texte); |
|
| 1393 | 1393 | |
| 1394 | - return $texte; |
|
| 1394 | + return $texte; |
|
| 1395 | 1395 | } |
| 1396 | 1396 | |
| 1397 | 1397 | |
@@ -1416,53 +1416,53 @@ discard block |
||
| 1416 | 1416 | * @return string |
| 1417 | 1417 | **/ |
| 1418 | 1418 | function post_autobr($texte, $delim = "\n_ ") { |
| 1419 | - if (!function_exists('echappe_html')) { |
|
| 1420 | - include_spip('inc/texte_mini'); |
|
| 1421 | - } |
|
| 1422 | - $texte = str_replace("\r\n", "\r", $texte); |
|
| 1423 | - $texte = str_replace("\r", "\n", $texte); |
|
| 1424 | - |
|
| 1425 | - if (preg_match(",\n+$,", $texte, $fin)) { |
|
| 1426 | - $texte = substr($texte, 0, -strlen($fin = $fin[0])); |
|
| 1427 | - } else { |
|
| 1428 | - $fin = ''; |
|
| 1429 | - } |
|
| 1430 | - |
|
| 1431 | - $texte = echappe_html($texte, '', true); |
|
| 1432 | - |
|
| 1433 | - // echapper les modeles |
|
| 1434 | - if (strpos($texte, "<") !== false) { |
|
| 1435 | - include_spip('inc/lien'); |
|
| 1436 | - if (defined('_PREG_MODELE')) { |
|
| 1437 | - $preg_modeles = "@" . _PREG_MODELE . "@imsS"; |
|
| 1438 | - $texte = echappe_html($texte, '', true, $preg_modeles); |
|
| 1439 | - } |
|
| 1440 | - } |
|
| 1441 | - |
|
| 1442 | - $debut = ''; |
|
| 1443 | - $suite = $texte; |
|
| 1444 | - while ($t = strpos('-' . $suite, "\n", 1)) { |
|
| 1445 | - $debut .= substr($suite, 0, $t - 1); |
|
| 1446 | - $suite = substr($suite, $t); |
|
| 1447 | - $car = substr($suite, 0, 1); |
|
| 1448 | - if (($car <> '-') and ($car <> '_') and ($car <> "\n") and ($car <> "|") and ($car <> "}") |
|
| 1449 | - and !preg_match(',^\s*(\n|</?(quote|div|dl|dt|dd)|$),S', ($suite)) |
|
| 1450 | - and !preg_match(',</?(quote|div|dl|dt|dd)> *$,iS', $debut) |
|
| 1451 | - ) { |
|
| 1452 | - $debut .= $delim; |
|
| 1453 | - } else { |
|
| 1454 | - $debut .= "\n"; |
|
| 1455 | - } |
|
| 1456 | - if (preg_match(",^\n+,", $suite, $regs)) { |
|
| 1457 | - $debut .= $regs[0]; |
|
| 1458 | - $suite = substr($suite, strlen($regs[0])); |
|
| 1459 | - } |
|
| 1460 | - } |
|
| 1461 | - $texte = $debut . $suite; |
|
| 1462 | - |
|
| 1463 | - $texte = echappe_retour($texte); |
|
| 1464 | - |
|
| 1465 | - return $texte . $fin; |
|
| 1419 | + if (!function_exists('echappe_html')) { |
|
| 1420 | + include_spip('inc/texte_mini'); |
|
| 1421 | + } |
|
| 1422 | + $texte = str_replace("\r\n", "\r", $texte); |
|
| 1423 | + $texte = str_replace("\r", "\n", $texte); |
|
| 1424 | + |
|
| 1425 | + if (preg_match(",\n+$,", $texte, $fin)) { |
|
| 1426 | + $texte = substr($texte, 0, -strlen($fin = $fin[0])); |
|
| 1427 | + } else { |
|
| 1428 | + $fin = ''; |
|
| 1429 | + } |
|
| 1430 | + |
|
| 1431 | + $texte = echappe_html($texte, '', true); |
|
| 1432 | + |
|
| 1433 | + // echapper les modeles |
|
| 1434 | + if (strpos($texte, "<") !== false) { |
|
| 1435 | + include_spip('inc/lien'); |
|
| 1436 | + if (defined('_PREG_MODELE')) { |
|
| 1437 | + $preg_modeles = "@" . _PREG_MODELE . "@imsS"; |
|
| 1438 | + $texte = echappe_html($texte, '', true, $preg_modeles); |
|
| 1439 | + } |
|
| 1440 | + } |
|
| 1441 | + |
|
| 1442 | + $debut = ''; |
|
| 1443 | + $suite = $texte; |
|
| 1444 | + while ($t = strpos('-' . $suite, "\n", 1)) { |
|
| 1445 | + $debut .= substr($suite, 0, $t - 1); |
|
| 1446 | + $suite = substr($suite, $t); |
|
| 1447 | + $car = substr($suite, 0, 1); |
|
| 1448 | + if (($car <> '-') and ($car <> '_') and ($car <> "\n") and ($car <> "|") and ($car <> "}") |
|
| 1449 | + and !preg_match(',^\s*(\n|</?(quote|div|dl|dt|dd)|$),S', ($suite)) |
|
| 1450 | + and !preg_match(',</?(quote|div|dl|dt|dd)> *$,iS', $debut) |
|
| 1451 | + ) { |
|
| 1452 | + $debut .= $delim; |
|
| 1453 | + } else { |
|
| 1454 | + $debut .= "\n"; |
|
| 1455 | + } |
|
| 1456 | + if (preg_match(",^\n+,", $suite, $regs)) { |
|
| 1457 | + $debut .= $regs[0]; |
|
| 1458 | + $suite = substr($suite, strlen($regs[0])); |
|
| 1459 | + } |
|
| 1460 | + } |
|
| 1461 | + $texte = $debut . $suite; |
|
| 1462 | + |
|
| 1463 | + $texte = echappe_retour($texte); |
|
| 1464 | + |
|
| 1465 | + return $texte . $fin; |
|
| 1466 | 1466 | } |
| 1467 | 1467 | |
| 1468 | 1468 | |
@@ -1503,46 +1503,46 @@ discard block |
||
| 1503 | 1503 | * @return string |
| 1504 | 1504 | **/ |
| 1505 | 1505 | function extraire_idiome($letexte, $lang = null, $options = array()) { |
| 1506 | - static $traduire = false; |
|
| 1507 | - if ($letexte |
|
| 1508 | - and preg_match_all(_EXTRAIRE_IDIOME, $letexte, $regs, PREG_SET_ORDER) |
|
| 1509 | - ) { |
|
| 1510 | - if (!$traduire) { |
|
| 1511 | - $traduire = charger_fonction('traduire', 'inc'); |
|
| 1512 | - include_spip('inc/lang'); |
|
| 1513 | - } |
|
| 1514 | - if (!$lang) { |
|
| 1515 | - $lang = $GLOBALS['spip_lang']; |
|
| 1516 | - } |
|
| 1517 | - // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean |
|
| 1518 | - if (is_bool($options)) { |
|
| 1519 | - $options = array('echappe_span' => $options); |
|
| 1520 | - } |
|
| 1521 | - if (!isset($options['echappe_span'])) { |
|
| 1522 | - $options = array_merge($options, array('echappe_span' => false)); |
|
| 1523 | - } |
|
| 1524 | - |
|
| 1525 | - foreach ($regs as $reg) { |
|
| 1526 | - $cle = ($reg[1] ? $reg[1] . ':' : '') . $reg[2]; |
|
| 1527 | - $desc = $traduire($cle, $lang, true); |
|
| 1528 | - $l = $desc->langue; |
|
| 1529 | - // si pas de traduction, on laissera l'écriture de l'idiome entier dans le texte. |
|
| 1530 | - if (strlen($desc->texte)) { |
|
| 1531 | - $trad = code_echappement($desc->texte, 'idiome', false); |
|
| 1532 | - if ($l !== $lang) { |
|
| 1533 | - $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
|
| 1534 | - } |
|
| 1535 | - if (lang_dir($l) !== lang_dir($lang)) { |
|
| 1536 | - $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l))); |
|
| 1537 | - } |
|
| 1538 | - if (!$options['echappe_span']) { |
|
| 1539 | - $trad = echappe_retour($trad, 'idiome'); |
|
| 1540 | - } |
|
| 1541 | - $letexte = str_replace($reg[0], $trad, $letexte); |
|
| 1542 | - } |
|
| 1543 | - } |
|
| 1544 | - } |
|
| 1545 | - return $letexte; |
|
| 1506 | + static $traduire = false; |
|
| 1507 | + if ($letexte |
|
| 1508 | + and preg_match_all(_EXTRAIRE_IDIOME, $letexte, $regs, PREG_SET_ORDER) |
|
| 1509 | + ) { |
|
| 1510 | + if (!$traduire) { |
|
| 1511 | + $traduire = charger_fonction('traduire', 'inc'); |
|
| 1512 | + include_spip('inc/lang'); |
|
| 1513 | + } |
|
| 1514 | + if (!$lang) { |
|
| 1515 | + $lang = $GLOBALS['spip_lang']; |
|
| 1516 | + } |
|
| 1517 | + // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean |
|
| 1518 | + if (is_bool($options)) { |
|
| 1519 | + $options = array('echappe_span' => $options); |
|
| 1520 | + } |
|
| 1521 | + if (!isset($options['echappe_span'])) { |
|
| 1522 | + $options = array_merge($options, array('echappe_span' => false)); |
|
| 1523 | + } |
|
| 1524 | + |
|
| 1525 | + foreach ($regs as $reg) { |
|
| 1526 | + $cle = ($reg[1] ? $reg[1] . ':' : '') . $reg[2]; |
|
| 1527 | + $desc = $traduire($cle, $lang, true); |
|
| 1528 | + $l = $desc->langue; |
|
| 1529 | + // si pas de traduction, on laissera l'écriture de l'idiome entier dans le texte. |
|
| 1530 | + if (strlen($desc->texte)) { |
|
| 1531 | + $trad = code_echappement($desc->texte, 'idiome', false); |
|
| 1532 | + if ($l !== $lang) { |
|
| 1533 | + $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
|
| 1534 | + } |
|
| 1535 | + if (lang_dir($l) !== lang_dir($lang)) { |
|
| 1536 | + $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l))); |
|
| 1537 | + } |
|
| 1538 | + if (!$options['echappe_span']) { |
|
| 1539 | + $trad = echappe_retour($trad, 'idiome'); |
|
| 1540 | + } |
|
| 1541 | + $letexte = str_replace($reg[0], $trad, $letexte); |
|
| 1542 | + } |
|
| 1543 | + } |
|
| 1544 | + } |
|
| 1545 | + return $letexte; |
|
| 1546 | 1546 | } |
| 1547 | 1547 | |
| 1548 | 1548 | /** |
@@ -1594,64 +1594,64 @@ discard block |
||
| 1594 | 1594 | **/ |
| 1595 | 1595 | function extraire_multi($letexte, $lang = null, $options = array()) { |
| 1596 | 1596 | |
| 1597 | - if ($letexte |
|
| 1598 | - and preg_match_all(_EXTRAIRE_MULTI, $letexte, $regs, PREG_SET_ORDER) |
|
| 1599 | - ) { |
|
| 1600 | - if (!$lang) { |
|
| 1601 | - $lang = $GLOBALS['spip_lang']; |
|
| 1602 | - } |
|
| 1603 | - |
|
| 1604 | - // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean |
|
| 1605 | - if (is_bool($options)) { |
|
| 1606 | - $options = array('echappe_span' => $options, 'lang_defaut' => _LANGUE_PAR_DEFAUT); |
|
| 1607 | - } |
|
| 1608 | - if (!isset($options['echappe_span'])) { |
|
| 1609 | - $options = array_merge($options, array('echappe_span' => false)); |
|
| 1610 | - } |
|
| 1611 | - if (!isset($options['lang_defaut'])) { |
|
| 1612 | - $options = array_merge($options, array('lang_defaut' => _LANGUE_PAR_DEFAUT)); |
|
| 1613 | - } |
|
| 1614 | - |
|
| 1615 | - include_spip('inc/lang'); |
|
| 1616 | - foreach ($regs as $reg) { |
|
| 1617 | - // chercher la version de la langue courante |
|
| 1618 | - $trads = extraire_trads($reg[1]); |
|
| 1619 | - if ($l = approcher_langue($trads, $lang)) { |
|
| 1620 | - $trad = $trads[$l]; |
|
| 1621 | - } else { |
|
| 1622 | - if ($options['lang_defaut'] == 'aucune') { |
|
| 1623 | - $trad = ''; |
|
| 1624 | - } else { |
|
| 1625 | - // langue absente, prendre le fr ou une langue précisée (meme comportement que inc/traduire.php) |
|
| 1626 | - // ou la premiere dispo |
|
| 1627 | - // mais typographier le texte selon les regles de celle-ci |
|
| 1628 | - // Attention aux blocs multi sur plusieurs lignes |
|
| 1629 | - if (!$l = approcher_langue($trads, $options['lang_defaut'])) { |
|
| 1630 | - $l = key($trads); |
|
| 1631 | - } |
|
| 1632 | - $trad = $trads[$l]; |
|
| 1633 | - $typographie = charger_fonction(lang_typo($l), 'typographie'); |
|
| 1634 | - $trad = $typographie($trad); |
|
| 1635 | - // Tester si on echappe en span ou en div |
|
| 1636 | - // il ne faut pas echapper en div si propre produit un seul paragraphe |
|
| 1637 | - include_spip('inc/texte'); |
|
| 1638 | - $trad_propre = preg_replace(",(^<p[^>]*>|</p>$),Uims", "", propre($trad)); |
|
| 1639 | - $mode = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $trad_propre) ? 'div' : 'span'; |
|
| 1640 | - $trad = code_echappement($trad, 'multi', false, $mode); |
|
| 1641 | - $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
|
| 1642 | - if (lang_dir($l) !== lang_dir($lang)) { |
|
| 1643 | - $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l))); |
|
| 1644 | - } |
|
| 1645 | - if (!$options['echappe_span']) { |
|
| 1646 | - $trad = echappe_retour($trad, 'multi'); |
|
| 1647 | - } |
|
| 1648 | - } |
|
| 1649 | - } |
|
| 1650 | - $letexte = str_replace($reg[0], $trad, $letexte); |
|
| 1651 | - } |
|
| 1652 | - } |
|
| 1653 | - |
|
| 1654 | - return $letexte; |
|
| 1597 | + if ($letexte |
|
| 1598 | + and preg_match_all(_EXTRAIRE_MULTI, $letexte, $regs, PREG_SET_ORDER) |
|
| 1599 | + ) { |
|
| 1600 | + if (!$lang) { |
|
| 1601 | + $lang = $GLOBALS['spip_lang']; |
|
| 1602 | + } |
|
| 1603 | + |
|
| 1604 | + // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean |
|
| 1605 | + if (is_bool($options)) { |
|
| 1606 | + $options = array('echappe_span' => $options, 'lang_defaut' => _LANGUE_PAR_DEFAUT); |
|
| 1607 | + } |
|
| 1608 | + if (!isset($options['echappe_span'])) { |
|
| 1609 | + $options = array_merge($options, array('echappe_span' => false)); |
|
| 1610 | + } |
|
| 1611 | + if (!isset($options['lang_defaut'])) { |
|
| 1612 | + $options = array_merge($options, array('lang_defaut' => _LANGUE_PAR_DEFAUT)); |
|
| 1613 | + } |
|
| 1614 | + |
|
| 1615 | + include_spip('inc/lang'); |
|
| 1616 | + foreach ($regs as $reg) { |
|
| 1617 | + // chercher la version de la langue courante |
|
| 1618 | + $trads = extraire_trads($reg[1]); |
|
| 1619 | + if ($l = approcher_langue($trads, $lang)) { |
|
| 1620 | + $trad = $trads[$l]; |
|
| 1621 | + } else { |
|
| 1622 | + if ($options['lang_defaut'] == 'aucune') { |
|
| 1623 | + $trad = ''; |
|
| 1624 | + } else { |
|
| 1625 | + // langue absente, prendre le fr ou une langue précisée (meme comportement que inc/traduire.php) |
|
| 1626 | + // ou la premiere dispo |
|
| 1627 | + // mais typographier le texte selon les regles de celle-ci |
|
| 1628 | + // Attention aux blocs multi sur plusieurs lignes |
|
| 1629 | + if (!$l = approcher_langue($trads, $options['lang_defaut'])) { |
|
| 1630 | + $l = key($trads); |
|
| 1631 | + } |
|
| 1632 | + $trad = $trads[$l]; |
|
| 1633 | + $typographie = charger_fonction(lang_typo($l), 'typographie'); |
|
| 1634 | + $trad = $typographie($trad); |
|
| 1635 | + // Tester si on echappe en span ou en div |
|
| 1636 | + // il ne faut pas echapper en div si propre produit un seul paragraphe |
|
| 1637 | + include_spip('inc/texte'); |
|
| 1638 | + $trad_propre = preg_replace(",(^<p[^>]*>|</p>$),Uims", "", propre($trad)); |
|
| 1639 | + $mode = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $trad_propre) ? 'div' : 'span'; |
|
| 1640 | + $trad = code_echappement($trad, 'multi', false, $mode); |
|
| 1641 | + $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
|
| 1642 | + if (lang_dir($l) !== lang_dir($lang)) { |
|
| 1643 | + $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l))); |
|
| 1644 | + } |
|
| 1645 | + if (!$options['echappe_span']) { |
|
| 1646 | + $trad = echappe_retour($trad, 'multi'); |
|
| 1647 | + } |
|
| 1648 | + } |
|
| 1649 | + } |
|
| 1650 | + $letexte = str_replace($reg[0], $trad, $letexte); |
|
| 1651 | + } |
|
| 1652 | + } |
|
| 1653 | + |
|
| 1654 | + return $letexte; |
|
| 1655 | 1655 | } |
| 1656 | 1656 | |
| 1657 | 1657 | /** |
@@ -1667,20 +1667,20 @@ discard block |
||
| 1667 | 1667 | * Peut retourner un code de langue vide, lorsqu'un texte par défaut est indiqué. |
| 1668 | 1668 | **/ |
| 1669 | 1669 | function extraire_trads($bloc) { |
| 1670 | - $lang = ''; |
|
| 1670 | + $lang = ''; |
|
| 1671 | 1671 | // ce reg fait planter l'analyse multi s'il y a de l'{italique} dans le champ |
| 1672 | 1672 | // while (preg_match("/^(.*?)[{\[]([a-z_]+)[}\]]/siS", $bloc, $regs)) { |
| 1673 | - while (preg_match("/^(.*?)[\[]([a-z_]+)[\]]/siS", $bloc, $regs)) { |
|
| 1674 | - $texte = trim($regs[1]); |
|
| 1675 | - if ($texte or $lang) { |
|
| 1676 | - $trads[$lang] = $texte; |
|
| 1677 | - } |
|
| 1678 | - $bloc = substr($bloc, strlen($regs[0])); |
|
| 1679 | - $lang = $regs[2]; |
|
| 1680 | - } |
|
| 1681 | - $trads[$lang] = $bloc; |
|
| 1673 | + while (preg_match("/^(.*?)[\[]([a-z_]+)[\]]/siS", $bloc, $regs)) { |
|
| 1674 | + $texte = trim($regs[1]); |
|
| 1675 | + if ($texte or $lang) { |
|
| 1676 | + $trads[$lang] = $texte; |
|
| 1677 | + } |
|
| 1678 | + $bloc = substr($bloc, strlen($regs[0])); |
|
| 1679 | + $lang = $regs[2]; |
|
| 1680 | + } |
|
| 1681 | + $trads[$lang] = $bloc; |
|
| 1682 | 1682 | |
| 1683 | - return $trads; |
|
| 1683 | + return $trads; |
|
| 1684 | 1684 | } |
| 1685 | 1685 | |
| 1686 | 1686 | |
@@ -1691,7 +1691,7 @@ discard block |
||
| 1691 | 1691 | * @return string L'initiale en majuscule |
| 1692 | 1692 | */ |
| 1693 | 1693 | function filtre_initiale($nom) { |
| 1694 | - return spip_substr(trim(strtoupper(extraire_multi($nom))), 0, 1); |
|
| 1694 | + return spip_substr(trim(strtoupper(extraire_multi($nom))), 0, 1); |
|
| 1695 | 1695 | } |
| 1696 | 1696 | |
| 1697 | 1697 | |
@@ -1736,33 +1736,33 @@ discard block |
||
| 1736 | 1736 | * - null (interne) : si on empile |
| 1737 | 1737 | **/ |
| 1738 | 1738 | function unique($donnee, $famille = '', $cpt = false) { |
| 1739 | - static $mem = array(); |
|
| 1740 | - // permettre de vider la pile et de la restaurer |
|
| 1741 | - // pour le calcul de introduction... |
|
| 1742 | - if ($famille == '_spip_raz_') { |
|
| 1743 | - $tmp = $mem; |
|
| 1744 | - $mem = array(); |
|
| 1745 | - |
|
| 1746 | - return $tmp; |
|
| 1747 | - } elseif ($famille == '_spip_set_') { |
|
| 1748 | - $mem = $donnee; |
|
| 1749 | - |
|
| 1750 | - return; |
|
| 1751 | - } |
|
| 1752 | - // eviter une notice |
|
| 1753 | - if (!isset($mem[$famille])) { |
|
| 1754 | - $mem[$famille] = array(); |
|
| 1755 | - } |
|
| 1756 | - if ($cpt) { |
|
| 1757 | - return count($mem[$famille]); |
|
| 1758 | - } |
|
| 1759 | - // eviter une notice |
|
| 1760 | - if (!isset($mem[$famille][$donnee])) { |
|
| 1761 | - $mem[$famille][$donnee] = 0; |
|
| 1762 | - } |
|
| 1763 | - if (!($mem[$famille][$donnee]++)) { |
|
| 1764 | - return $donnee; |
|
| 1765 | - } |
|
| 1739 | + static $mem = array(); |
|
| 1740 | + // permettre de vider la pile et de la restaurer |
|
| 1741 | + // pour le calcul de introduction... |
|
| 1742 | + if ($famille == '_spip_raz_') { |
|
| 1743 | + $tmp = $mem; |
|
| 1744 | + $mem = array(); |
|
| 1745 | + |
|
| 1746 | + return $tmp; |
|
| 1747 | + } elseif ($famille == '_spip_set_') { |
|
| 1748 | + $mem = $donnee; |
|
| 1749 | + |
|
| 1750 | + return; |
|
| 1751 | + } |
|
| 1752 | + // eviter une notice |
|
| 1753 | + if (!isset($mem[$famille])) { |
|
| 1754 | + $mem[$famille] = array(); |
|
| 1755 | + } |
|
| 1756 | + if ($cpt) { |
|
| 1757 | + return count($mem[$famille]); |
|
| 1758 | + } |
|
| 1759 | + // eviter une notice |
|
| 1760 | + if (!isset($mem[$famille][$donnee])) { |
|
| 1761 | + $mem[$famille][$donnee] = 0; |
|
| 1762 | + } |
|
| 1763 | + if (!($mem[$famille][$donnee]++)) { |
|
| 1764 | + return $donnee; |
|
| 1765 | + } |
|
| 1766 | 1766 | } |
| 1767 | 1767 | |
| 1768 | 1768 | |
@@ -1790,18 +1790,18 @@ discard block |
||
| 1790 | 1790 | * Une des valeurs en fonction du compteur. |
| 1791 | 1791 | **/ |
| 1792 | 1792 | function alterner($i) { |
| 1793 | - // recuperer les arguments (attention fonctions un peu space) |
|
| 1794 | - $num = func_num_args(); |
|
| 1795 | - $args = func_get_args(); |
|
| 1793 | + // recuperer les arguments (attention fonctions un peu space) |
|
| 1794 | + $num = func_num_args(); |
|
| 1795 | + $args = func_get_args(); |
|
| 1796 | 1796 | |
| 1797 | - if ($num == 2 && is_array($args[1])) { |
|
| 1798 | - $args = $args[1]; |
|
| 1799 | - array_unshift($args, ''); |
|
| 1800 | - $num = count($args); |
|
| 1801 | - } |
|
| 1797 | + if ($num == 2 && is_array($args[1])) { |
|
| 1798 | + $args = $args[1]; |
|
| 1799 | + array_unshift($args, ''); |
|
| 1800 | + $num = count($args); |
|
| 1801 | + } |
|
| 1802 | 1802 | |
| 1803 | - // renvoyer le i-ieme argument, modulo le nombre d'arguments |
|
| 1804 | - return $args[(intval($i) - 1) % ($num - 1) + 1]; |
|
| 1803 | + // renvoyer le i-ieme argument, modulo le nombre d'arguments |
|
| 1804 | + return $args[(intval($i) - 1) % ($num - 1) + 1]; |
|
| 1805 | 1805 | } |
| 1806 | 1806 | |
| 1807 | 1807 | |
@@ -1826,46 +1826,46 @@ discard block |
||
| 1826 | 1826 | * - Tableau complet (si 2e argument) |
| 1827 | 1827 | **/ |
| 1828 | 1828 | function extraire_attribut($balise, $attribut, $complet = false) { |
| 1829 | - if (is_array($balise)) { |
|
| 1830 | - array_walk( |
|
| 1831 | - $balise, |
|
| 1832 | - function(&$a, $key, $t){ |
|
| 1833 | - $a = extraire_attribut($a, $t); |
|
| 1834 | - }, |
|
| 1835 | - $attribut |
|
| 1836 | - ); |
|
| 1837 | - |
|
| 1838 | - return $balise; |
|
| 1839 | - } |
|
| 1840 | - if (preg_match( |
|
| 1841 | - ',(^.*?<(?:(?>\s*)(?>[\w:.-]+)(?>(?:=(?:"[^"]*"|\'[^\']*\'|[^\'"]\S*))?))*?)(\s+' |
|
| 1842 | - . $attribut |
|
| 1843 | - . '(?:=\s*("[^"]*"|\'[^\']*\'|[^\'"]\S*))?)()((?:[\s/][^>]*)?>.*),isS', |
|
| 1844 | - |
|
| 1845 | - $balise, $r)) { |
|
| 1846 | - if (isset($r[3][0]) and ($r[3][0] == '"' || $r[3][0] == "'")) { |
|
| 1847 | - $r[4] = substr($r[3], 1, -1); |
|
| 1848 | - $r[3] = $r[3][0]; |
|
| 1849 | - } elseif ($r[3] !== '') { |
|
| 1850 | - $r[4] = $r[3]; |
|
| 1851 | - $r[3] = ''; |
|
| 1852 | - } else { |
|
| 1853 | - $r[4] = trim($r[2]); |
|
| 1854 | - } |
|
| 1855 | - $att = $r[4]; |
|
| 1856 | - if (strpos($att, "&#") !== false) { |
|
| 1857 | - $att = str_replace(array("'", "'", """, """), array("'", "'", '"', '"'), $att); |
|
| 1858 | - } |
|
| 1859 | - $att = filtrer_entites($att); |
|
| 1860 | - } else { |
|
| 1861 | - $att = null; |
|
| 1862 | - } |
|
| 1863 | - |
|
| 1864 | - if ($complet) { |
|
| 1865 | - return array($att, $r); |
|
| 1866 | - } else { |
|
| 1867 | - return $att; |
|
| 1868 | - } |
|
| 1829 | + if (is_array($balise)) { |
|
| 1830 | + array_walk( |
|
| 1831 | + $balise, |
|
| 1832 | + function(&$a, $key, $t){ |
|
| 1833 | + $a = extraire_attribut($a, $t); |
|
| 1834 | + }, |
|
| 1835 | + $attribut |
|
| 1836 | + ); |
|
| 1837 | + |
|
| 1838 | + return $balise; |
|
| 1839 | + } |
|
| 1840 | + if (preg_match( |
|
| 1841 | + ',(^.*?<(?:(?>\s*)(?>[\w:.-]+)(?>(?:=(?:"[^"]*"|\'[^\']*\'|[^\'"]\S*))?))*?)(\s+' |
|
| 1842 | + . $attribut |
|
| 1843 | + . '(?:=\s*("[^"]*"|\'[^\']*\'|[^\'"]\S*))?)()((?:[\s/][^>]*)?>.*),isS', |
|
| 1844 | + |
|
| 1845 | + $balise, $r)) { |
|
| 1846 | + if (isset($r[3][0]) and ($r[3][0] == '"' || $r[3][0] == "'")) { |
|
| 1847 | + $r[4] = substr($r[3], 1, -1); |
|
| 1848 | + $r[3] = $r[3][0]; |
|
| 1849 | + } elseif ($r[3] !== '') { |
|
| 1850 | + $r[4] = $r[3]; |
|
| 1851 | + $r[3] = ''; |
|
| 1852 | + } else { |
|
| 1853 | + $r[4] = trim($r[2]); |
|
| 1854 | + } |
|
| 1855 | + $att = $r[4]; |
|
| 1856 | + if (strpos($att, "&#") !== false) { |
|
| 1857 | + $att = str_replace(array("'", "'", """, """), array("'", "'", '"', '"'), $att); |
|
| 1858 | + } |
|
| 1859 | + $att = filtrer_entites($att); |
|
| 1860 | + } else { |
|
| 1861 | + $att = null; |
|
| 1862 | + } |
|
| 1863 | + |
|
| 1864 | + if ($complet) { |
|
| 1865 | + return array($att, $r); |
|
| 1866 | + } else { |
|
| 1867 | + return $att; |
|
| 1868 | + } |
|
| 1869 | 1869 | } |
| 1870 | 1870 | |
| 1871 | 1871 | /** |
@@ -1897,37 +1897,37 @@ discard block |
||
| 1897 | 1897 | * Code html modifié |
| 1898 | 1898 | **/ |
| 1899 | 1899 | function inserer_attribut($balise, $attribut, $val, $proteger = true, $vider = false) { |
| 1900 | - // preparer l'attribut |
|
| 1901 | - // supprimer les etc mais pas les balises html |
|
| 1902 | - // qui ont un sens dans un attribut value d'un input |
|
| 1903 | - if ($proteger) { |
|
| 1904 | - $val = attribut_html($val, false); |
|
| 1905 | - } |
|
| 1906 | - |
|
| 1907 | - // echapper les ' pour eviter tout bug |
|
| 1908 | - $val = str_replace("'", "'", $val); |
|
| 1909 | - if ($vider and strlen($val) == 0) { |
|
| 1910 | - $insert = ''; |
|
| 1911 | - } else { |
|
| 1912 | - $insert = " $attribut='$val'"; |
|
| 1913 | - } |
|
| 1914 | - |
|
| 1915 | - list($old, $r) = extraire_attribut($balise, $attribut, true); |
|
| 1916 | - |
|
| 1917 | - if ($old !== null) { |
|
| 1918 | - // Remplacer l'ancien attribut du meme nom |
|
| 1919 | - $balise = $r[1] . $insert . $r[5]; |
|
| 1920 | - } else { |
|
| 1921 | - // preferer une balise " />" (comme <img />) |
|
| 1922 | - if (preg_match(',/>,', $balise)) { |
|
| 1923 | - $balise = preg_replace(",\s?/>,S", $insert . " />", $balise, 1); |
|
| 1924 | - } // sinon une balise <a ...> ... </a> |
|
| 1925 | - else { |
|
| 1926 | - $balise = preg_replace(",\s?>,S", $insert . ">", $balise, 1); |
|
| 1927 | - } |
|
| 1928 | - } |
|
| 1929 | - |
|
| 1930 | - return $balise; |
|
| 1900 | + // preparer l'attribut |
|
| 1901 | + // supprimer les etc mais pas les balises html |
|
| 1902 | + // qui ont un sens dans un attribut value d'un input |
|
| 1903 | + if ($proteger) { |
|
| 1904 | + $val = attribut_html($val, false); |
|
| 1905 | + } |
|
| 1906 | + |
|
| 1907 | + // echapper les ' pour eviter tout bug |
|
| 1908 | + $val = str_replace("'", "'", $val); |
|
| 1909 | + if ($vider and strlen($val) == 0) { |
|
| 1910 | + $insert = ''; |
|
| 1911 | + } else { |
|
| 1912 | + $insert = " $attribut='$val'"; |
|
| 1913 | + } |
|
| 1914 | + |
|
| 1915 | + list($old, $r) = extraire_attribut($balise, $attribut, true); |
|
| 1916 | + |
|
| 1917 | + if ($old !== null) { |
|
| 1918 | + // Remplacer l'ancien attribut du meme nom |
|
| 1919 | + $balise = $r[1] . $insert . $r[5]; |
|
| 1920 | + } else { |
|
| 1921 | + // preferer une balise " />" (comme <img />) |
|
| 1922 | + if (preg_match(',/>,', $balise)) { |
|
| 1923 | + $balise = preg_replace(",\s?/>,S", $insert . " />", $balise, 1); |
|
| 1924 | + } // sinon une balise <a ...> ... </a> |
|
| 1925 | + else { |
|
| 1926 | + $balise = preg_replace(",\s?>,S", $insert . ">", $balise, 1); |
|
| 1927 | + } |
|
| 1928 | + } |
|
| 1929 | + |
|
| 1930 | + return $balise; |
|
| 1931 | 1931 | } |
| 1932 | 1932 | |
| 1933 | 1933 | /** |
@@ -1945,7 +1945,7 @@ discard block |
||
| 1945 | 1945 | * @return string Code HTML sans l'attribut |
| 1946 | 1946 | **/ |
| 1947 | 1947 | function vider_attribut($balise, $attribut) { |
| 1948 | - return inserer_attribut($balise, $attribut, '', false, true); |
|
| 1948 | + return inserer_attribut($balise, $attribut, '', false, true); |
|
| 1949 | 1949 | } |
| 1950 | 1950 | |
| 1951 | 1951 | |
@@ -1957,9 +1957,9 @@ discard block |
||
| 1957 | 1957 | * @return string |
| 1958 | 1958 | */ |
| 1959 | 1959 | function tester_config($id, $mode = '') { |
| 1960 | - include_spip('action/inscrire_auteur'); |
|
| 1960 | + include_spip('action/inscrire_auteur'); |
|
| 1961 | 1961 | |
| 1962 | - return tester_statut_inscription($mode, $id); |
|
| 1962 | + return tester_statut_inscription($mode, $id); |
|
| 1963 | 1963 | } |
| 1964 | 1964 | |
| 1965 | 1965 | // |
@@ -1984,7 +1984,7 @@ discard block |
||
| 1984 | 1984 | * @return int $a+$b |
| 1985 | 1985 | **/ |
| 1986 | 1986 | function plus($a, $b) { |
| 1987 | - return $a + $b; |
|
| 1987 | + return $a + $b; |
|
| 1988 | 1988 | } |
| 1989 | 1989 | function strplus($a, $b) {return strize('plus', $a, $b);} |
| 1990 | 1990 | /** |
@@ -2003,7 +2003,7 @@ discard block |
||
| 2003 | 2003 | * @return int $a-$b |
| 2004 | 2004 | **/ |
| 2005 | 2005 | function moins($a, $b) { |
| 2006 | - return $a - $b; |
|
| 2006 | + return $a - $b; |
|
| 2007 | 2007 | } |
| 2008 | 2008 | function strmoins($a, $b) {return strize('moins', $a, $b);} |
| 2009 | 2009 | |
@@ -2024,7 +2024,7 @@ discard block |
||
| 2024 | 2024 | * @return int $a*$b |
| 2025 | 2025 | **/ |
| 2026 | 2026 | function mult($a, $b) { |
| 2027 | - return $a * $b; |
|
| 2027 | + return $a * $b; |
|
| 2028 | 2028 | } |
| 2029 | 2029 | function strmult($a, $b) {return strize('mult', $a, $b);} |
| 2030 | 2030 | |
@@ -2045,7 +2045,7 @@ discard block |
||
| 2045 | 2045 | * @return int $a/$b (ou 0 si $b est nul) |
| 2046 | 2046 | **/ |
| 2047 | 2047 | function div($a, $b) { |
| 2048 | - return $b ? $a / $b : 0; |
|
| 2048 | + return $b ? $a / $b : 0; |
|
| 2049 | 2049 | } |
| 2050 | 2050 | function strdiv($a, $b) {return strize('div', $a, $b);} |
| 2051 | 2051 | |
@@ -2067,7 +2067,7 @@ discard block |
||
| 2067 | 2067 | * @return int ($nb % $mod) + $add |
| 2068 | 2068 | **/ |
| 2069 | 2069 | function modulo($nb, $mod, $add = 0) { |
| 2070 | - return ($mod ? $nb % $mod : 0) + $add; |
|
| 2070 | + return ($mod ? $nb % $mod : 0) + $add; |
|
| 2071 | 2071 | } |
| 2072 | 2072 | |
| 2073 | 2073 | |
@@ -2082,24 +2082,24 @@ discard block |
||
| 2082 | 2082 | * - true sinon |
| 2083 | 2083 | **/ |
| 2084 | 2084 | function nom_acceptable($nom) { |
| 2085 | - if (!is_string($nom)) { |
|
| 2086 | - return false; |
|
| 2087 | - } |
|
| 2088 | - if (!defined('_TAGS_NOM_AUTEUR')) { |
|
| 2089 | - define('_TAGS_NOM_AUTEUR', ''); |
|
| 2090 | - } |
|
| 2091 | - $tags_acceptes = array_unique(explode(',', 'multi,' . _TAGS_NOM_AUTEUR)); |
|
| 2092 | - foreach ($tags_acceptes as $tag) { |
|
| 2093 | - if (strlen($tag)) { |
|
| 2094 | - $remp1[] = '<' . trim($tag) . '>'; |
|
| 2095 | - $remp1[] = '</' . trim($tag) . '>'; |
|
| 2096 | - $remp2[] = '\x60' . trim($tag) . '\x61'; |
|
| 2097 | - $remp2[] = '\x60/' . trim($tag) . '\x61'; |
|
| 2098 | - } |
|
| 2099 | - } |
|
| 2100 | - $v_nom = str_replace($remp2, $remp1, supprimer_tags(str_replace($remp1, $remp2, $nom))); |
|
| 2085 | + if (!is_string($nom)) { |
|
| 2086 | + return false; |
|
| 2087 | + } |
|
| 2088 | + if (!defined('_TAGS_NOM_AUTEUR')) { |
|
| 2089 | + define('_TAGS_NOM_AUTEUR', ''); |
|
| 2090 | + } |
|
| 2091 | + $tags_acceptes = array_unique(explode(',', 'multi,' . _TAGS_NOM_AUTEUR)); |
|
| 2092 | + foreach ($tags_acceptes as $tag) { |
|
| 2093 | + if (strlen($tag)) { |
|
| 2094 | + $remp1[] = '<' . trim($tag) . '>'; |
|
| 2095 | + $remp1[] = '</' . trim($tag) . '>'; |
|
| 2096 | + $remp2[] = '\x60' . trim($tag) . '\x61'; |
|
| 2097 | + $remp2[] = '\x60/' . trim($tag) . '\x61'; |
|
| 2098 | + } |
|
| 2099 | + } |
|
| 2100 | + $v_nom = str_replace($remp2, $remp1, supprimer_tags(str_replace($remp1, $remp2, $nom))); |
|
| 2101 | 2101 | |
| 2102 | - return str_replace('<', '<', $v_nom) == $nom; |
|
| 2102 | + return str_replace('<', '<', $v_nom) == $nom; |
|
| 2103 | 2103 | } |
| 2104 | 2104 | |
| 2105 | 2105 | |
@@ -2113,29 +2113,29 @@ discard block |
||
| 2113 | 2113 | * - la normalisation de la dernière adresse donnée sinon |
| 2114 | 2114 | **/ |
| 2115 | 2115 | function email_valide($adresses) { |
| 2116 | - // eviter d'injecter n'importe quoi dans preg_match |
|
| 2117 | - if (!is_string($adresses)) { |
|
| 2118 | - return false; |
|
| 2119 | - } |
|
| 2116 | + // eviter d'injecter n'importe quoi dans preg_match |
|
| 2117 | + if (!is_string($adresses)) { |
|
| 2118 | + return false; |
|
| 2119 | + } |
|
| 2120 | 2120 | |
| 2121 | - // Si c'est un spammeur autant arreter tout de suite |
|
| 2122 | - if (preg_match(",[\n\r].*(MIME|multipart|Content-),i", $adresses)) { |
|
| 2123 | - spip_log("Tentative d'injection de mail : $adresses"); |
|
| 2121 | + // Si c'est un spammeur autant arreter tout de suite |
|
| 2122 | + if (preg_match(",[\n\r].*(MIME|multipart|Content-),i", $adresses)) { |
|
| 2123 | + spip_log("Tentative d'injection de mail : $adresses"); |
|
| 2124 | 2124 | |
| 2125 | - return false; |
|
| 2126 | - } |
|
| 2125 | + return false; |
|
| 2126 | + } |
|
| 2127 | 2127 | |
| 2128 | - foreach (explode(',', $adresses) as $v) { |
|
| 2129 | - // nettoyer certains formats |
|
| 2130 | - // "Marie Toto <[email protected]>" |
|
| 2131 | - $adresse = trim(preg_replace(",^[^<>\"]*<([^<>\"]+)>$,i", "\\1", $v)); |
|
| 2132 | - // RFC 822 |
|
| 2133 | - if (!preg_match('#^[^()<>@,;:\\"/[:space:]]+(@([-_0-9a-z]+\.)*[-_0-9a-z]+)$#i', $adresse)) { |
|
| 2134 | - return false; |
|
| 2135 | - } |
|
| 2136 | - } |
|
| 2128 | + foreach (explode(',', $adresses) as $v) { |
|
| 2129 | + // nettoyer certains formats |
|
| 2130 | + // "Marie Toto <[email protected]>" |
|
| 2131 | + $adresse = trim(preg_replace(",^[^<>\"]*<([^<>\"]+)>$,i", "\\1", $v)); |
|
| 2132 | + // RFC 822 |
|
| 2133 | + if (!preg_match('#^[^()<>@,;:\\"/[:space:]]+(@([-_0-9a-z]+\.)*[-_0-9a-z]+)$#i', $adresse)) { |
|
| 2134 | + return false; |
|
| 2135 | + } |
|
| 2136 | + } |
|
| 2137 | 2137 | |
| 2138 | - return $adresse; |
|
| 2138 | + return $adresse; |
|
| 2139 | 2139 | } |
| 2140 | 2140 | |
| 2141 | 2141 | /** |
@@ -2149,20 +2149,20 @@ discard block |
||
| 2149 | 2149 | * @return string Texte |
| 2150 | 2150 | **/ |
| 2151 | 2151 | function afficher_enclosures($tags) { |
| 2152 | - $s = array(); |
|
| 2153 | - foreach (extraire_balises($tags, 'a') as $tag) { |
|
| 2154 | - if (extraire_attribut($tag, 'rel') == 'enclosure' |
|
| 2155 | - and $t = extraire_attribut($tag, 'href') |
|
| 2156 | - ) { |
|
| 2157 | - $s[] = preg_replace(',>[^<]+</a>,S', |
|
| 2158 | - '>' |
|
| 2159 | - . http_img_pack('attachment-16.png', $t, |
|
| 2160 | - 'title="' . attribut_html($t) . '"') |
|
| 2161 | - . '</a>', $tag); |
|
| 2162 | - } |
|
| 2163 | - } |
|
| 2152 | + $s = array(); |
|
| 2153 | + foreach (extraire_balises($tags, 'a') as $tag) { |
|
| 2154 | + if (extraire_attribut($tag, 'rel') == 'enclosure' |
|
| 2155 | + and $t = extraire_attribut($tag, 'href') |
|
| 2156 | + ) { |
|
| 2157 | + $s[] = preg_replace(',>[^<]+</a>,S', |
|
| 2158 | + '>' |
|
| 2159 | + . http_img_pack('attachment-16.png', $t, |
|
| 2160 | + 'title="' . attribut_html($t) . '"') |
|
| 2161 | + . '</a>', $tag); |
|
| 2162 | + } |
|
| 2163 | + } |
|
| 2164 | 2164 | |
| 2165 | - return join(' ', $s); |
|
| 2165 | + return join(' ', $s); |
|
| 2166 | 2166 | } |
| 2167 | 2167 | |
| 2168 | 2168 | /** |
@@ -2177,15 +2177,15 @@ discard block |
||
| 2177 | 2177 | * @return string Liens trouvés |
| 2178 | 2178 | **/ |
| 2179 | 2179 | function afficher_tags($tags, $rels = 'tag,directory') { |
| 2180 | - $s = array(); |
|
| 2181 | - foreach (extraire_balises($tags, 'a') as $tag) { |
|
| 2182 | - $rel = extraire_attribut($tag, 'rel'); |
|
| 2183 | - if (strstr(",$rels,", ",$rel,")) { |
|
| 2184 | - $s[] = $tag; |
|
| 2185 | - } |
|
| 2186 | - } |
|
| 2180 | + $s = array(); |
|
| 2181 | + foreach (extraire_balises($tags, 'a') as $tag) { |
|
| 2182 | + $rel = extraire_attribut($tag, 'rel'); |
|
| 2183 | + if (strstr(",$rels,", ",$rel,")) { |
|
| 2184 | + $s[] = $tag; |
|
| 2185 | + } |
|
| 2186 | + } |
|
| 2187 | 2187 | |
| 2188 | - return join(', ', $s); |
|
| 2188 | + return join(', ', $s); |
|
| 2189 | 2189 | } |
| 2190 | 2190 | |
| 2191 | 2191 | |
@@ -2207,21 +2207,21 @@ discard block |
||
| 2207 | 2207 | * @return string Tag HTML `<a>` avec microformat. |
| 2208 | 2208 | **/ |
| 2209 | 2209 | function enclosure2microformat($e) { |
| 2210 | - if (!$url = filtrer_entites(extraire_attribut($e, 'url'))) { |
|
| 2211 | - $url = filtrer_entites(extraire_attribut($e, 'href')); |
|
| 2212 | - } |
|
| 2213 | - $type = extraire_attribut($e, 'type'); |
|
| 2214 | - if (!$length = extraire_attribut($e, 'length')) { |
|
| 2215 | - # <media:content : longeur dans fileSize. On tente. |
|
| 2216 | - $length = extraire_attribut($e, 'fileSize'); |
|
| 2217 | - } |
|
| 2218 | - $fichier = basename($url); |
|
| 2210 | + if (!$url = filtrer_entites(extraire_attribut($e, 'url'))) { |
|
| 2211 | + $url = filtrer_entites(extraire_attribut($e, 'href')); |
|
| 2212 | + } |
|
| 2213 | + $type = extraire_attribut($e, 'type'); |
|
| 2214 | + if (!$length = extraire_attribut($e, 'length')) { |
|
| 2215 | + # <media:content : longeur dans fileSize. On tente. |
|
| 2216 | + $length = extraire_attribut($e, 'fileSize'); |
|
| 2217 | + } |
|
| 2218 | + $fichier = basename($url); |
|
| 2219 | 2219 | |
| 2220 | - return '<a rel="enclosure"' |
|
| 2221 | - . ($url ? ' href="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2222 | - . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2223 | - . ($length ? ' title="' . spip_htmlspecialchars($length) . '"' : '') |
|
| 2224 | - . '>' . $fichier . '</a>'; |
|
| 2220 | + return '<a rel="enclosure"' |
|
| 2221 | + . ($url ? ' href="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2222 | + . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2223 | + . ($length ? ' title="' . spip_htmlspecialchars($length) . '"' : '') |
|
| 2224 | + . '>' . $fichier . '</a>'; |
|
| 2225 | 2225 | } |
| 2226 | 2226 | |
| 2227 | 2227 | /** |
@@ -2239,24 +2239,24 @@ discard block |
||
| 2239 | 2239 | * @return string Tags RSS `<enclosure>`. |
| 2240 | 2240 | **/ |
| 2241 | 2241 | function microformat2enclosure($tags) { |
| 2242 | - $enclosures = array(); |
|
| 2243 | - foreach (extraire_balises($tags, 'a') as $e) { |
|
| 2244 | - if (extraire_attribut($e, 'rel') == 'enclosure') { |
|
| 2245 | - $url = filtrer_entites(extraire_attribut($e, 'href')); |
|
| 2246 | - $type = extraire_attribut($e, 'type'); |
|
| 2247 | - if (!$length = intval(extraire_attribut($e, 'title'))) { |
|
| 2248 | - $length = intval(extraire_attribut($e, 'length')); |
|
| 2249 | - } # vieux data |
|
| 2250 | - $fichier = basename($url); |
|
| 2251 | - $enclosures[] = '<enclosure' |
|
| 2252 | - . ($url ? ' url="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2253 | - . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2254 | - . ($length ? ' length="' . $length . '"' : '') |
|
| 2255 | - . ' />'; |
|
| 2256 | - } |
|
| 2257 | - } |
|
| 2242 | + $enclosures = array(); |
|
| 2243 | + foreach (extraire_balises($tags, 'a') as $e) { |
|
| 2244 | + if (extraire_attribut($e, 'rel') == 'enclosure') { |
|
| 2245 | + $url = filtrer_entites(extraire_attribut($e, 'href')); |
|
| 2246 | + $type = extraire_attribut($e, 'type'); |
|
| 2247 | + if (!$length = intval(extraire_attribut($e, 'title'))) { |
|
| 2248 | + $length = intval(extraire_attribut($e, 'length')); |
|
| 2249 | + } # vieux data |
|
| 2250 | + $fichier = basename($url); |
|
| 2251 | + $enclosures[] = '<enclosure' |
|
| 2252 | + . ($url ? ' url="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2253 | + . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2254 | + . ($length ? ' length="' . $length . '"' : '') |
|
| 2255 | + . ' />'; |
|
| 2256 | + } |
|
| 2257 | + } |
|
| 2258 | 2258 | |
| 2259 | - return join("\n", $enclosures); |
|
| 2259 | + return join("\n", $enclosures); |
|
| 2260 | 2260 | } |
| 2261 | 2261 | |
| 2262 | 2262 | |
@@ -2272,16 +2272,16 @@ discard block |
||
| 2272 | 2272 | * @return string Tags RSS Atom `<dc:subject>`. |
| 2273 | 2273 | **/ |
| 2274 | 2274 | function tags2dcsubject($tags) { |
| 2275 | - $subjects = ''; |
|
| 2276 | - foreach (extraire_balises($tags, 'a') as $e) { |
|
| 2277 | - if (extraire_attribut($e, rel) == 'tag') { |
|
| 2278 | - $subjects .= '<dc:subject>' |
|
| 2279 | - . texte_backend(textebrut($e)) |
|
| 2280 | - . '</dc:subject>' . "\n"; |
|
| 2281 | - } |
|
| 2282 | - } |
|
| 2275 | + $subjects = ''; |
|
| 2276 | + foreach (extraire_balises($tags, 'a') as $e) { |
|
| 2277 | + if (extraire_attribut($e, rel) == 'tag') { |
|
| 2278 | + $subjects .= '<dc:subject>' |
|
| 2279 | + . texte_backend(textebrut($e)) |
|
| 2280 | + . '</dc:subject>' . "\n"; |
|
| 2281 | + } |
|
| 2282 | + } |
|
| 2283 | 2283 | |
| 2284 | - return $subjects; |
|
| 2284 | + return $subjects; |
|
| 2285 | 2285 | } |
| 2286 | 2286 | |
| 2287 | 2287 | /** |
@@ -2310,23 +2310,23 @@ discard block |
||
| 2310 | 2310 | * - Tableau de résultats, si tableau en entrée. |
| 2311 | 2311 | **/ |
| 2312 | 2312 | function extraire_balise($texte, $tag = 'a') { |
| 2313 | - if (is_array($texte)) { |
|
| 2314 | - array_walk( |
|
| 2315 | - $texte, |
|
| 2316 | - function(&$a, $key, $t){ |
|
| 2317 | - $a = extraire_balise($a, $t); |
|
| 2318 | - }, |
|
| 2319 | - $tag |
|
| 2320 | - ); |
|
| 2313 | + if (is_array($texte)) { |
|
| 2314 | + array_walk( |
|
| 2315 | + $texte, |
|
| 2316 | + function(&$a, $key, $t){ |
|
| 2317 | + $a = extraire_balise($a, $t); |
|
| 2318 | + }, |
|
| 2319 | + $tag |
|
| 2320 | + ); |
|
| 2321 | 2321 | |
| 2322 | - return $texte; |
|
| 2323 | - } |
|
| 2322 | + return $texte; |
|
| 2323 | + } |
|
| 2324 | 2324 | |
| 2325 | - if (preg_match( |
|
| 2326 | - ",<$tag\b[^>]*(/>|>.*</$tag\b[^>]*>|>),UimsS", |
|
| 2327 | - $texte, $regs)) { |
|
| 2328 | - return $regs[0]; |
|
| 2329 | - } |
|
| 2325 | + if (preg_match( |
|
| 2326 | + ",<$tag\b[^>]*(/>|>.*</$tag\b[^>]*>|>),UimsS", |
|
| 2327 | + $texte, $regs)) { |
|
| 2328 | + return $regs[0]; |
|
| 2329 | + } |
|
| 2330 | 2330 | } |
| 2331 | 2331 | |
| 2332 | 2332 | /** |
@@ -2354,25 +2354,25 @@ discard block |
||
| 2354 | 2354 | * - Tableau de résultats, si tableau en entrée. |
| 2355 | 2355 | **/ |
| 2356 | 2356 | function extraire_balises($texte, $tag = 'a') { |
| 2357 | - if (is_array($texte)) { |
|
| 2358 | - array_walk( |
|
| 2359 | - $texte, |
|
| 2360 | - function(&$a, $key, $t){ |
|
| 2361 | - $a = extraire_balises($a, $t); |
|
| 2362 | - }, |
|
| 2363 | - $tag |
|
| 2364 | - ); |
|
| 2357 | + if (is_array($texte)) { |
|
| 2358 | + array_walk( |
|
| 2359 | + $texte, |
|
| 2360 | + function(&$a, $key, $t){ |
|
| 2361 | + $a = extraire_balises($a, $t); |
|
| 2362 | + }, |
|
| 2363 | + $tag |
|
| 2364 | + ); |
|
| 2365 | 2365 | |
| 2366 | - return $texte; |
|
| 2367 | - } |
|
| 2366 | + return $texte; |
|
| 2367 | + } |
|
| 2368 | 2368 | |
| 2369 | - if (preg_match_all( |
|
| 2370 | - ",<${tag}\b[^>]*(/>|>.*</${tag}\b[^>]*>|>),UimsS", |
|
| 2371 | - $texte, $regs, PREG_PATTERN_ORDER)) { |
|
| 2372 | - return $regs[0]; |
|
| 2373 | - } else { |
|
| 2374 | - return array(); |
|
| 2375 | - } |
|
| 2369 | + if (preg_match_all( |
|
| 2370 | + ",<${tag}\b[^>]*(/>|>.*</${tag}\b[^>]*>|>),UimsS", |
|
| 2371 | + $texte, $regs, PREG_PATTERN_ORDER)) { |
|
| 2372 | + return $regs[0]; |
|
| 2373 | + } else { |
|
| 2374 | + return array(); |
|
| 2375 | + } |
|
| 2376 | 2376 | } |
| 2377 | 2377 | |
| 2378 | 2378 | /** |
@@ -2401,11 +2401,11 @@ discard block |
||
| 2401 | 2401 | * - `$def` si on n'a pas transmis de tableau |
| 2402 | 2402 | **/ |
| 2403 | 2403 | function in_any($val, $vals, $def = '') { |
| 2404 | - if (!is_array($vals) and $v = unserialize($vals)) { |
|
| 2405 | - $vals = $v; |
|
| 2406 | - } |
|
| 2404 | + if (!is_array($vals) and $v = unserialize($vals)) { |
|
| 2405 | + $vals = $v; |
|
| 2406 | + } |
|
| 2407 | 2407 | |
| 2408 | - return (!is_array($vals) ? $def : (in_array($val, $vals) ? ' ' : '')); |
|
| 2408 | + return (!is_array($vals) ? $def : (in_array($val, $vals) ? ' ' : '')); |
|
| 2409 | 2409 | } |
| 2410 | 2410 | |
| 2411 | 2411 | |
@@ -2426,12 +2426,12 @@ discard block |
||
| 2426 | 2426 | * Résultat du calcul |
| 2427 | 2427 | **/ |
| 2428 | 2428 | function valeur_numerique($expr) { |
| 2429 | - $a = 0; |
|
| 2430 | - if (preg_match(',^[0-9]+(\s*[+*-]\s*[0-9]+)*$,S', trim($expr))) { |
|
| 2431 | - eval("\$a = $expr;"); |
|
| 2432 | - } |
|
| 2429 | + $a = 0; |
|
| 2430 | + if (preg_match(',^[0-9]+(\s*[+*-]\s*[0-9]+)*$,S', trim($expr))) { |
|
| 2431 | + eval("\$a = $expr;"); |
|
| 2432 | + } |
|
| 2433 | 2433 | |
| 2434 | - return intval($a); |
|
| 2434 | + return intval($a); |
|
| 2435 | 2435 | } |
| 2436 | 2436 | |
| 2437 | 2437 | /** |
@@ -2450,7 +2450,7 @@ discard block |
||
| 2450 | 2450 | * Retourne `$a*$b/$c` |
| 2451 | 2451 | **/ |
| 2452 | 2452 | function regledetrois($a, $b, $c) { |
| 2453 | - return round($a * $b / $c); |
|
| 2453 | + return round($a * $b / $c); |
|
| 2454 | 2454 | } |
| 2455 | 2455 | |
| 2456 | 2456 | |
@@ -2474,76 +2474,76 @@ discard block |
||
| 2474 | 2474 | **/ |
| 2475 | 2475 | function form_hidden($action) { |
| 2476 | 2476 | |
| 2477 | - $contexte = array(); |
|
| 2478 | - include_spip('inc/urls'); |
|
| 2479 | - if ($p = urls_decoder_url($action, '') |
|
| 2480 | - and reset($p) |
|
| 2481 | - ) { |
|
| 2482 | - $fond = array_shift($p); |
|
| 2483 | - if ($fond != '404') { |
|
| 2484 | - $contexte = array_shift($p); |
|
| 2485 | - $contexte['page'] = $fond; |
|
| 2486 | - $action = preg_replace('/([?]' . preg_quote($fond) . '[^&=]*[0-9]+)(&|$)/', '?&', $action); |
|
| 2487 | - } |
|
| 2488 | - } |
|
| 2489 | - // defaire ce qu'a injecte urls_decoder_url : a revoir en modifiant la signature de urls_decoder_url |
|
| 2490 | - if (defined('_DEFINIR_CONTEXTE_TYPE') and _DEFINIR_CONTEXTE_TYPE) { |
|
| 2491 | - unset($contexte['type']); |
|
| 2492 | - } |
|
| 2493 | - if (defined('_DEFINIR_CONTEXTE_TYPE_PAGE') and _DEFINIR_CONTEXTE_TYPE_PAGE) { |
|
| 2494 | - unset($contexte['type-page']); |
|
| 2495 | - } |
|
| 2496 | - |
|
| 2497 | - // on va remplir un tableau de valeurs en prenant bien soin de ne pas |
|
| 2498 | - // ecraser les elements de la forme mots[]=1&mots[]=2 |
|
| 2499 | - $values = array(); |
|
| 2500 | - |
|
| 2501 | - // d'abord avec celles de l'url |
|
| 2502 | - if (false !== ($p = strpos($action, '?'))) { |
|
| 2503 | - foreach (preg_split('/&(amp;)?/S', substr($action, $p + 1)) as $c) { |
|
| 2504 | - $c = explode('=', $c, 2); |
|
| 2505 | - $var = array_shift($c); |
|
| 2506 | - $val = array_shift($c); |
|
| 2507 | - if ($var) { |
|
| 2508 | - $val = rawurldecode($val); |
|
| 2509 | - $var = rawurldecode($var); // decoder les [] eventuels |
|
| 2510 | - if (preg_match(',\[\]$,S', $var)) { |
|
| 2511 | - $values[] = array($var, $val); |
|
| 2512 | - } else { |
|
| 2513 | - if (!isset($values[$var])) { |
|
| 2514 | - $values[$var] = array($var, $val); |
|
| 2515 | - } |
|
| 2516 | - } |
|
| 2517 | - } |
|
| 2518 | - } |
|
| 2519 | - } |
|
| 2520 | - |
|
| 2521 | - // ensuite avec celles du contexte, sans doublonner ! |
|
| 2522 | - foreach ($contexte as $var => $val) { |
|
| 2523 | - if (preg_match(',\[\]$,S', $var)) { |
|
| 2524 | - $values[] = array($var, $val); |
|
| 2525 | - } else { |
|
| 2526 | - if (!isset($values[$var])) { |
|
| 2527 | - $values[$var] = array($var, $val); |
|
| 2528 | - } |
|
| 2529 | - } |
|
| 2530 | - } |
|
| 2531 | - |
|
| 2532 | - // puis on rassemble le tout |
|
| 2533 | - $hidden = array(); |
|
| 2534 | - foreach ($values as $value) { |
|
| 2535 | - list($var, $val) = $value; |
|
| 2536 | - $hidden[] = '<input name="' |
|
| 2537 | - . entites_html($var) |
|
| 2538 | - . '"' |
|
| 2539 | - . (is_null($val) |
|
| 2540 | - ? '' |
|
| 2541 | - : ' value="' . entites_html($val) . '"' |
|
| 2542 | - ) |
|
| 2543 | - . ' type="hidden"' . "\n/>"; |
|
| 2544 | - } |
|
| 2545 | - |
|
| 2546 | - return join("", $hidden); |
|
| 2477 | + $contexte = array(); |
|
| 2478 | + include_spip('inc/urls'); |
|
| 2479 | + if ($p = urls_decoder_url($action, '') |
|
| 2480 | + and reset($p) |
|
| 2481 | + ) { |
|
| 2482 | + $fond = array_shift($p); |
|
| 2483 | + if ($fond != '404') { |
|
| 2484 | + $contexte = array_shift($p); |
|
| 2485 | + $contexte['page'] = $fond; |
|
| 2486 | + $action = preg_replace('/([?]' . preg_quote($fond) . '[^&=]*[0-9]+)(&|$)/', '?&', $action); |
|
| 2487 | + } |
|
| 2488 | + } |
|
| 2489 | + // defaire ce qu'a injecte urls_decoder_url : a revoir en modifiant la signature de urls_decoder_url |
|
| 2490 | + if (defined('_DEFINIR_CONTEXTE_TYPE') and _DEFINIR_CONTEXTE_TYPE) { |
|
| 2491 | + unset($contexte['type']); |
|
| 2492 | + } |
|
| 2493 | + if (defined('_DEFINIR_CONTEXTE_TYPE_PAGE') and _DEFINIR_CONTEXTE_TYPE_PAGE) { |
|
| 2494 | + unset($contexte['type-page']); |
|
| 2495 | + } |
|
| 2496 | + |
|
| 2497 | + // on va remplir un tableau de valeurs en prenant bien soin de ne pas |
|
| 2498 | + // ecraser les elements de la forme mots[]=1&mots[]=2 |
|
| 2499 | + $values = array(); |
|
| 2500 | + |
|
| 2501 | + // d'abord avec celles de l'url |
|
| 2502 | + if (false !== ($p = strpos($action, '?'))) { |
|
| 2503 | + foreach (preg_split('/&(amp;)?/S', substr($action, $p + 1)) as $c) { |
|
| 2504 | + $c = explode('=', $c, 2); |
|
| 2505 | + $var = array_shift($c); |
|
| 2506 | + $val = array_shift($c); |
|
| 2507 | + if ($var) { |
|
| 2508 | + $val = rawurldecode($val); |
|
| 2509 | + $var = rawurldecode($var); // decoder les [] eventuels |
|
| 2510 | + if (preg_match(',\[\]$,S', $var)) { |
|
| 2511 | + $values[] = array($var, $val); |
|
| 2512 | + } else { |
|
| 2513 | + if (!isset($values[$var])) { |
|
| 2514 | + $values[$var] = array($var, $val); |
|
| 2515 | + } |
|
| 2516 | + } |
|
| 2517 | + } |
|
| 2518 | + } |
|
| 2519 | + } |
|
| 2520 | + |
|
| 2521 | + // ensuite avec celles du contexte, sans doublonner ! |
|
| 2522 | + foreach ($contexte as $var => $val) { |
|
| 2523 | + if (preg_match(',\[\]$,S', $var)) { |
|
| 2524 | + $values[] = array($var, $val); |
|
| 2525 | + } else { |
|
| 2526 | + if (!isset($values[$var])) { |
|
| 2527 | + $values[$var] = array($var, $val); |
|
| 2528 | + } |
|
| 2529 | + } |
|
| 2530 | + } |
|
| 2531 | + |
|
| 2532 | + // puis on rassemble le tout |
|
| 2533 | + $hidden = array(); |
|
| 2534 | + foreach ($values as $value) { |
|
| 2535 | + list($var, $val) = $value; |
|
| 2536 | + $hidden[] = '<input name="' |
|
| 2537 | + . entites_html($var) |
|
| 2538 | + . '"' |
|
| 2539 | + . (is_null($val) |
|
| 2540 | + ? '' |
|
| 2541 | + : ' value="' . entites_html($val) . '"' |
|
| 2542 | + ) |
|
| 2543 | + . ' type="hidden"' . "\n/>"; |
|
| 2544 | + } |
|
| 2545 | + |
|
| 2546 | + return join("", $hidden); |
|
| 2547 | 2547 | } |
| 2548 | 2548 | |
| 2549 | 2549 | /** |
@@ -2561,15 +2561,15 @@ discard block |
||
| 2561 | 2561 | * Liste (première page, dernière page). |
| 2562 | 2562 | **/ |
| 2563 | 2563 | function filtre_bornes_pagination_dist($courante, $nombre, $max = 10) { |
| 2564 | - if ($max <= 0 or $max >= $nombre) { |
|
| 2565 | - return array(1, $nombre); |
|
| 2566 | - } |
|
| 2564 | + if ($max <= 0 or $max >= $nombre) { |
|
| 2565 | + return array(1, $nombre); |
|
| 2566 | + } |
|
| 2567 | 2567 | |
| 2568 | - $premiere = max(1, $courante - floor(($max - 1) / 2)); |
|
| 2569 | - $derniere = min($nombre, $premiere + $max - 2); |
|
| 2570 | - $premiere = $derniere == $nombre ? $derniere - $max + 1 : $premiere; |
|
| 2568 | + $premiere = max(1, $courante - floor(($max - 1) / 2)); |
|
| 2569 | + $derniere = min($nombre, $premiere + $max - 2); |
|
| 2570 | + $premiere = $derniere == $nombre ? $derniere - $max + 1 : $premiere; |
|
| 2571 | 2571 | |
| 2572 | - return array($premiere, $derniere); |
|
| 2572 | + return array($premiere, $derniere); |
|
| 2573 | 2573 | } |
| 2574 | 2574 | |
| 2575 | 2575 | |
@@ -2591,7 +2591,7 @@ discard block |
||
| 2591 | 2591 | * - la première valeur du tableau sinon. |
| 2592 | 2592 | **/ |
| 2593 | 2593 | function filtre_reset($array) { |
| 2594 | - return !is_array($array) ? null : reset($array); |
|
| 2594 | + return !is_array($array) ? null : reset($array); |
|
| 2595 | 2595 | } |
| 2596 | 2596 | |
| 2597 | 2597 | /** |
@@ -2612,7 +2612,7 @@ discard block |
||
| 2612 | 2612 | * - la dernière valeur du tableau sinon. |
| 2613 | 2613 | **/ |
| 2614 | 2614 | function filtre_end($array) { |
| 2615 | - return !is_array($array) ? null : end($array); |
|
| 2615 | + return !is_array($array) ? null : end($array); |
|
| 2616 | 2616 | } |
| 2617 | 2617 | |
| 2618 | 2618 | /** |
@@ -2632,11 +2632,11 @@ discard block |
||
| 2632 | 2632 | * |
| 2633 | 2633 | **/ |
| 2634 | 2634 | function filtre_push($array, $val) { |
| 2635 | - if (!is_array($array) or !array_push($array, $val)) { |
|
| 2636 | - return ''; |
|
| 2637 | - } |
|
| 2635 | + if (!is_array($array) or !array_push($array, $val)) { |
|
| 2636 | + return ''; |
|
| 2637 | + } |
|
| 2638 | 2638 | |
| 2639 | - return $array; |
|
| 2639 | + return $array; |
|
| 2640 | 2640 | } |
| 2641 | 2641 | |
| 2642 | 2642 | /** |
@@ -2655,7 +2655,7 @@ discard block |
||
| 2655 | 2655 | * - `true` si la valeur existe dans le tableau, `false` sinon. |
| 2656 | 2656 | **/ |
| 2657 | 2657 | function filtre_find($array, $val) { |
| 2658 | - return (is_array($array) and in_array($val, $array)); |
|
| 2658 | + return (is_array($array) and in_array($val, $array)); |
|
| 2659 | 2659 | } |
| 2660 | 2660 | |
| 2661 | 2661 | |
@@ -2690,58 +2690,58 @@ discard block |
||
| 2690 | 2690 | * Code HTML de la pagination |
| 2691 | 2691 | **/ |
| 2692 | 2692 | function filtre_pagination_dist( |
| 2693 | - $total, |
|
| 2694 | - $nom, |
|
| 2695 | - $position, |
|
| 2696 | - $pas, |
|
| 2697 | - $liste = true, |
|
| 2698 | - $modele = '', |
|
| 2699 | - $connect = '', |
|
| 2700 | - $env = array() |
|
| 2693 | + $total, |
|
| 2694 | + $nom, |
|
| 2695 | + $position, |
|
| 2696 | + $pas, |
|
| 2697 | + $liste = true, |
|
| 2698 | + $modele = '', |
|
| 2699 | + $connect = '', |
|
| 2700 | + $env = array() |
|
| 2701 | 2701 | ) { |
| 2702 | - static $ancres = array(); |
|
| 2703 | - if ($pas < 1) { |
|
| 2704 | - return ''; |
|
| 2705 | - } |
|
| 2706 | - $ancre = 'pagination' . $nom; // #pagination_articles |
|
| 2707 | - $debut = 'debut' . $nom; // 'debut_articles' |
|
| 2708 | - |
|
| 2709 | - // n'afficher l'ancre qu'une fois |
|
| 2710 | - if (!isset($ancres[$ancre])) { |
|
| 2711 | - $bloc_ancre = $ancres[$ancre] = "<a name='" . $ancre . "' id='" . $ancre . "'></a>"; |
|
| 2712 | - } else { |
|
| 2713 | - $bloc_ancre = ''; |
|
| 2714 | - } |
|
| 2715 | - // liste = false : on ne veut que l'ancre |
|
| 2716 | - if (!$liste) { |
|
| 2717 | - return $ancres[$ancre]; |
|
| 2718 | - } |
|
| 2719 | - |
|
| 2720 | - $pagination = array( |
|
| 2721 | - 'debut' => $debut, |
|
| 2722 | - 'url' => parametre_url(self(), 'fragment', ''), // nettoyer l'id ahah eventuel |
|
| 2723 | - 'total' => $total, |
|
| 2724 | - 'position' => intval($position), |
|
| 2725 | - 'pas' => $pas, |
|
| 2726 | - 'nombre_pages' => floor(($total - 1) / $pas) + 1, |
|
| 2727 | - 'page_courante' => floor(intval($position) / $pas) + 1, |
|
| 2728 | - 'ancre' => $ancre, |
|
| 2729 | - 'bloc_ancre' => $bloc_ancre |
|
| 2730 | - ); |
|
| 2731 | - if (is_array($env)) { |
|
| 2732 | - $pagination = array_merge($env, $pagination); |
|
| 2733 | - } |
|
| 2734 | - |
|
| 2735 | - // Pas de pagination |
|
| 2736 | - if ($pagination['nombre_pages'] <= 1) { |
|
| 2737 | - return ''; |
|
| 2738 | - } |
|
| 2739 | - |
|
| 2740 | - if ($modele) { |
|
| 2741 | - $modele = '_' . $modele; |
|
| 2742 | - } |
|
| 2743 | - |
|
| 2744 | - return recuperer_fond("modeles/pagination$modele", $pagination, array('trim' => true), $connect); |
|
| 2702 | + static $ancres = array(); |
|
| 2703 | + if ($pas < 1) { |
|
| 2704 | + return ''; |
|
| 2705 | + } |
|
| 2706 | + $ancre = 'pagination' . $nom; // #pagination_articles |
|
| 2707 | + $debut = 'debut' . $nom; // 'debut_articles' |
|
| 2708 | + |
|
| 2709 | + // n'afficher l'ancre qu'une fois |
|
| 2710 | + if (!isset($ancres[$ancre])) { |
|
| 2711 | + $bloc_ancre = $ancres[$ancre] = "<a name='" . $ancre . "' id='" . $ancre . "'></a>"; |
|
| 2712 | + } else { |
|
| 2713 | + $bloc_ancre = ''; |
|
| 2714 | + } |
|
| 2715 | + // liste = false : on ne veut que l'ancre |
|
| 2716 | + if (!$liste) { |
|
| 2717 | + return $ancres[$ancre]; |
|
| 2718 | + } |
|
| 2719 | + |
|
| 2720 | + $pagination = array( |
|
| 2721 | + 'debut' => $debut, |
|
| 2722 | + 'url' => parametre_url(self(), 'fragment', ''), // nettoyer l'id ahah eventuel |
|
| 2723 | + 'total' => $total, |
|
| 2724 | + 'position' => intval($position), |
|
| 2725 | + 'pas' => $pas, |
|
| 2726 | + 'nombre_pages' => floor(($total - 1) / $pas) + 1, |
|
| 2727 | + 'page_courante' => floor(intval($position) / $pas) + 1, |
|
| 2728 | + 'ancre' => $ancre, |
|
| 2729 | + 'bloc_ancre' => $bloc_ancre |
|
| 2730 | + ); |
|
| 2731 | + if (is_array($env)) { |
|
| 2732 | + $pagination = array_merge($env, $pagination); |
|
| 2733 | + } |
|
| 2734 | + |
|
| 2735 | + // Pas de pagination |
|
| 2736 | + if ($pagination['nombre_pages'] <= 1) { |
|
| 2737 | + return ''; |
|
| 2738 | + } |
|
| 2739 | + |
|
| 2740 | + if ($modele) { |
|
| 2741 | + $modele = '_' . $modele; |
|
| 2742 | + } |
|
| 2743 | + |
|
| 2744 | + return recuperer_fond("modeles/pagination$modele", $pagination, array('trim' => true), $connect); |
|
| 2745 | 2745 | } |
| 2746 | 2746 | |
| 2747 | 2747 | |
@@ -2758,15 +2758,15 @@ discard block |
||
| 2758 | 2758 | * Contenu avec urls en absolus |
| 2759 | 2759 | **/ |
| 2760 | 2760 | function urls_absolues_css($contenu, $source) { |
| 2761 | - $path = suivre_lien(url_absolue($source), './'); |
|
| 2761 | + $path = suivre_lien(url_absolue($source), './'); |
|
| 2762 | 2762 | |
| 2763 | - return preg_replace_callback( |
|
| 2764 | - ",url\s*\(\s*['\"]?([^'\"/#\s][^:]*)['\"]?\s*\),Uims", |
|
| 2765 | - function($x) use ($path) { |
|
| 2766 | - return "url('" . suivre_lien($path, $x[1]) . "')"; |
|
| 2767 | - }, |
|
| 2768 | - $contenu |
|
| 2769 | - ); |
|
| 2763 | + return preg_replace_callback( |
|
| 2764 | + ",url\s*\(\s*['\"]?([^'\"/#\s][^:]*)['\"]?\s*\),Uims", |
|
| 2765 | + function($x) use ($path) { |
|
| 2766 | + return "url('" . suivre_lien($path, $x[1]) . "')"; |
|
| 2767 | + }, |
|
| 2768 | + $contenu |
|
| 2769 | + ); |
|
| 2770 | 2770 | } |
| 2771 | 2771 | |
| 2772 | 2772 | |
@@ -2795,118 +2795,118 @@ discard block |
||
| 2795 | 2795 | * Chemin du fichier CSS inversé |
| 2796 | 2796 | **/ |
| 2797 | 2797 | function direction_css($css, $voulue = '') { |
| 2798 | - if (!preg_match(',(_rtl)?\.css$,i', $css, $r)) { |
|
| 2799 | - return $css; |
|
| 2800 | - } |
|
| 2801 | - |
|
| 2802 | - // si on a precise le sens voulu en argument, le prendre en compte |
|
| 2803 | - if ($voulue = strtolower($voulue)) { |
|
| 2804 | - if ($voulue != 'rtl' and $voulue != 'ltr') { |
|
| 2805 | - $voulue = lang_dir($voulue); |
|
| 2806 | - } |
|
| 2807 | - } else { |
|
| 2808 | - $voulue = lang_dir(); |
|
| 2809 | - } |
|
| 2810 | - |
|
| 2811 | - $r = count($r) > 1; |
|
| 2812 | - $right = $r ? 'left' : 'right'; // 'right' de la css lue en entree |
|
| 2813 | - $dir = $r ? 'rtl' : 'ltr'; |
|
| 2814 | - $ndir = $r ? 'ltr' : 'rtl'; |
|
| 2815 | - |
|
| 2816 | - if ($voulue == $dir) { |
|
| 2817 | - return $css; |
|
| 2818 | - } |
|
| 2819 | - |
|
| 2820 | - if ( |
|
| 2821 | - // url absolue |
|
| 2822 | - preg_match(",^https?:,i", $css) |
|
| 2823 | - // ou qui contient un ? |
|
| 2824 | - or (($p = strpos($css, '?')) !== false) |
|
| 2825 | - ) { |
|
| 2826 | - $distant = true; |
|
| 2827 | - $cssf = parse_url($css); |
|
| 2828 | - $cssf = $cssf['path'] . ($cssf['query'] ? "?" . $cssf['query'] : ""); |
|
| 2829 | - $cssf = preg_replace(',[?:&=],', "_", $cssf); |
|
| 2830 | - } else { |
|
| 2831 | - $distant = false; |
|
| 2832 | - $cssf = $css; |
|
| 2833 | - // 1. regarder d'abord si un fichier avec la bonne direction n'est pas aussi |
|
| 2834 | - //propose (rien a faire dans ce cas) |
|
| 2835 | - $f = preg_replace(',(_rtl)?\.css$,i', '_' . $ndir . '.css', $css); |
|
| 2836 | - if (@file_exists($f)) { |
|
| 2837 | - return $f; |
|
| 2838 | - } |
|
| 2839 | - } |
|
| 2840 | - |
|
| 2841 | - // 2. |
|
| 2842 | - $dir_var = sous_repertoire(_DIR_VAR, 'cache-css'); |
|
| 2843 | - $f = $dir_var |
|
| 2844 | - . preg_replace(',.*/(.*?)(_rtl)?\.css,', '\1', $cssf) |
|
| 2845 | - . '.' . substr(md5($cssf), 0, 4) . '_' . $ndir . '.css'; |
|
| 2846 | - |
|
| 2847 | - // la css peut etre distante (url absolue !) |
|
| 2848 | - if ($distant) { |
|
| 2849 | - include_spip('inc/distant'); |
|
| 2850 | - $res = recuperer_url($css); |
|
| 2851 | - if (!$res or !$contenu = $res['page']) { |
|
| 2852 | - return $css; |
|
| 2853 | - } |
|
| 2854 | - } else { |
|
| 2855 | - if ((@filemtime($f) > @filemtime($css)) |
|
| 2856 | - and (_VAR_MODE != 'recalcul') |
|
| 2857 | - ) { |
|
| 2858 | - return $f; |
|
| 2859 | - } |
|
| 2860 | - if (!lire_fichier($css, $contenu)) { |
|
| 2861 | - return $css; |
|
| 2862 | - } |
|
| 2863 | - } |
|
| 2864 | - |
|
| 2865 | - |
|
| 2866 | - // Inverser la direction gauche-droite en utilisant CSSTidy qui gere aussi les shorthands |
|
| 2867 | - include_spip("lib/csstidy/class.csstidy"); |
|
| 2868 | - $parser = new csstidy(); |
|
| 2869 | - $parser->set_cfg('optimise_shorthands', 0); |
|
| 2870 | - $parser->set_cfg('reverse_left_and_right', true); |
|
| 2871 | - $parser->parse($contenu); |
|
| 2872 | - |
|
| 2873 | - $contenu = $parser->print->plain(); |
|
| 2874 | - |
|
| 2875 | - |
|
| 2876 | - // reperer les @import auxquels il faut propager le direction_css |
|
| 2877 | - preg_match_all(",\@import\s*url\s*\(\s*['\"]?([^'\"/][^:]*)['\"]?\s*\),Uims", $contenu, $regs); |
|
| 2878 | - $src = array(); |
|
| 2879 | - $src_direction_css = array(); |
|
| 2880 | - $src_faux_abs = array(); |
|
| 2881 | - $d = dirname($css); |
|
| 2882 | - foreach ($regs[1] as $k => $import_css) { |
|
| 2883 | - $css_direction = direction_css("$d/$import_css", $voulue); |
|
| 2884 | - // si la css_direction est dans le meme path que la css d'origine, on tronque le path, elle sera passee en absolue |
|
| 2885 | - if (substr($css_direction, 0, strlen($d) + 1) == "$d/") { |
|
| 2886 | - $css_direction = substr($css_direction, strlen($d) + 1); |
|
| 2887 | - } // si la css_direction commence par $dir_var on la fait passer pour une absolue |
|
| 2888 | - elseif (substr($css_direction, 0, strlen($dir_var)) == $dir_var) { |
|
| 2889 | - $css_direction = substr($css_direction, strlen($dir_var)); |
|
| 2890 | - $src_faux_abs["/@@@@@@/" . $css_direction] = $css_direction; |
|
| 2891 | - $css_direction = "/@@@@@@/" . $css_direction; |
|
| 2892 | - } |
|
| 2893 | - $src[] = $regs[0][$k]; |
|
| 2894 | - $src_direction_css[] = str_replace($import_css, $css_direction, $regs[0][$k]); |
|
| 2895 | - } |
|
| 2896 | - $contenu = str_replace($src, $src_direction_css, $contenu); |
|
| 2897 | - |
|
| 2898 | - $contenu = urls_absolues_css($contenu, $css); |
|
| 2899 | - |
|
| 2900 | - // virer les fausses url absolues que l'on a mis dans les import |
|
| 2901 | - if (count($src_faux_abs)) { |
|
| 2902 | - $contenu = str_replace(array_keys($src_faux_abs), $src_faux_abs, $contenu); |
|
| 2903 | - } |
|
| 2904 | - |
|
| 2905 | - if (!ecrire_fichier($f, $contenu)) { |
|
| 2906 | - return $css; |
|
| 2907 | - } |
|
| 2908 | - |
|
| 2909 | - return $f; |
|
| 2798 | + if (!preg_match(',(_rtl)?\.css$,i', $css, $r)) { |
|
| 2799 | + return $css; |
|
| 2800 | + } |
|
| 2801 | + |
|
| 2802 | + // si on a precise le sens voulu en argument, le prendre en compte |
|
| 2803 | + if ($voulue = strtolower($voulue)) { |
|
| 2804 | + if ($voulue != 'rtl' and $voulue != 'ltr') { |
|
| 2805 | + $voulue = lang_dir($voulue); |
|
| 2806 | + } |
|
| 2807 | + } else { |
|
| 2808 | + $voulue = lang_dir(); |
|
| 2809 | + } |
|
| 2810 | + |
|
| 2811 | + $r = count($r) > 1; |
|
| 2812 | + $right = $r ? 'left' : 'right'; // 'right' de la css lue en entree |
|
| 2813 | + $dir = $r ? 'rtl' : 'ltr'; |
|
| 2814 | + $ndir = $r ? 'ltr' : 'rtl'; |
|
| 2815 | + |
|
| 2816 | + if ($voulue == $dir) { |
|
| 2817 | + return $css; |
|
| 2818 | + } |
|
| 2819 | + |
|
| 2820 | + if ( |
|
| 2821 | + // url absolue |
|
| 2822 | + preg_match(",^https?:,i", $css) |
|
| 2823 | + // ou qui contient un ? |
|
| 2824 | + or (($p = strpos($css, '?')) !== false) |
|
| 2825 | + ) { |
|
| 2826 | + $distant = true; |
|
| 2827 | + $cssf = parse_url($css); |
|
| 2828 | + $cssf = $cssf['path'] . ($cssf['query'] ? "?" . $cssf['query'] : ""); |
|
| 2829 | + $cssf = preg_replace(',[?:&=],', "_", $cssf); |
|
| 2830 | + } else { |
|
| 2831 | + $distant = false; |
|
| 2832 | + $cssf = $css; |
|
| 2833 | + // 1. regarder d'abord si un fichier avec la bonne direction n'est pas aussi |
|
| 2834 | + //propose (rien a faire dans ce cas) |
|
| 2835 | + $f = preg_replace(',(_rtl)?\.css$,i', '_' . $ndir . '.css', $css); |
|
| 2836 | + if (@file_exists($f)) { |
|
| 2837 | + return $f; |
|
| 2838 | + } |
|
| 2839 | + } |
|
| 2840 | + |
|
| 2841 | + // 2. |
|
| 2842 | + $dir_var = sous_repertoire(_DIR_VAR, 'cache-css'); |
|
| 2843 | + $f = $dir_var |
|
| 2844 | + . preg_replace(',.*/(.*?)(_rtl)?\.css,', '\1', $cssf) |
|
| 2845 | + . '.' . substr(md5($cssf), 0, 4) . '_' . $ndir . '.css'; |
|
| 2846 | + |
|
| 2847 | + // la css peut etre distante (url absolue !) |
|
| 2848 | + if ($distant) { |
|
| 2849 | + include_spip('inc/distant'); |
|
| 2850 | + $res = recuperer_url($css); |
|
| 2851 | + if (!$res or !$contenu = $res['page']) { |
|
| 2852 | + return $css; |
|
| 2853 | + } |
|
| 2854 | + } else { |
|
| 2855 | + if ((@filemtime($f) > @filemtime($css)) |
|
| 2856 | + and (_VAR_MODE != 'recalcul') |
|
| 2857 | + ) { |
|
| 2858 | + return $f; |
|
| 2859 | + } |
|
| 2860 | + if (!lire_fichier($css, $contenu)) { |
|
| 2861 | + return $css; |
|
| 2862 | + } |
|
| 2863 | + } |
|
| 2864 | + |
|
| 2865 | + |
|
| 2866 | + // Inverser la direction gauche-droite en utilisant CSSTidy qui gere aussi les shorthands |
|
| 2867 | + include_spip("lib/csstidy/class.csstidy"); |
|
| 2868 | + $parser = new csstidy(); |
|
| 2869 | + $parser->set_cfg('optimise_shorthands', 0); |
|
| 2870 | + $parser->set_cfg('reverse_left_and_right', true); |
|
| 2871 | + $parser->parse($contenu); |
|
| 2872 | + |
|
| 2873 | + $contenu = $parser->print->plain(); |
|
| 2874 | + |
|
| 2875 | + |
|
| 2876 | + // reperer les @import auxquels il faut propager le direction_css |
|
| 2877 | + preg_match_all(",\@import\s*url\s*\(\s*['\"]?([^'\"/][^:]*)['\"]?\s*\),Uims", $contenu, $regs); |
|
| 2878 | + $src = array(); |
|
| 2879 | + $src_direction_css = array(); |
|
| 2880 | + $src_faux_abs = array(); |
|
| 2881 | + $d = dirname($css); |
|
| 2882 | + foreach ($regs[1] as $k => $import_css) { |
|
| 2883 | + $css_direction = direction_css("$d/$import_css", $voulue); |
|
| 2884 | + // si la css_direction est dans le meme path que la css d'origine, on tronque le path, elle sera passee en absolue |
|
| 2885 | + if (substr($css_direction, 0, strlen($d) + 1) == "$d/") { |
|
| 2886 | + $css_direction = substr($css_direction, strlen($d) + 1); |
|
| 2887 | + } // si la css_direction commence par $dir_var on la fait passer pour une absolue |
|
| 2888 | + elseif (substr($css_direction, 0, strlen($dir_var)) == $dir_var) { |
|
| 2889 | + $css_direction = substr($css_direction, strlen($dir_var)); |
|
| 2890 | + $src_faux_abs["/@@@@@@/" . $css_direction] = $css_direction; |
|
| 2891 | + $css_direction = "/@@@@@@/" . $css_direction; |
|
| 2892 | + } |
|
| 2893 | + $src[] = $regs[0][$k]; |
|
| 2894 | + $src_direction_css[] = str_replace($import_css, $css_direction, $regs[0][$k]); |
|
| 2895 | + } |
|
| 2896 | + $contenu = str_replace($src, $src_direction_css, $contenu); |
|
| 2897 | + |
|
| 2898 | + $contenu = urls_absolues_css($contenu, $css); |
|
| 2899 | + |
|
| 2900 | + // virer les fausses url absolues que l'on a mis dans les import |
|
| 2901 | + if (count($src_faux_abs)) { |
|
| 2902 | + $contenu = str_replace(array_keys($src_faux_abs), $src_faux_abs, $contenu); |
|
| 2903 | + } |
|
| 2904 | + |
|
| 2905 | + if (!ecrire_fichier($f, $contenu)) { |
|
| 2906 | + return $css; |
|
| 2907 | + } |
|
| 2908 | + |
|
| 2909 | + return $f; |
|
| 2910 | 2910 | } |
| 2911 | 2911 | |
| 2912 | 2912 | |
@@ -2929,43 +2929,43 @@ discard block |
||
| 2929 | 2929 | * - Chemin ou URL du fichier CSS source sinon. |
| 2930 | 2930 | **/ |
| 2931 | 2931 | function url_absolue_css($css) { |
| 2932 | - if (!preg_match(',\.css$,i', $css, $r)) { |
|
| 2933 | - return $css; |
|
| 2934 | - } |
|
| 2932 | + if (!preg_match(',\.css$,i', $css, $r)) { |
|
| 2933 | + return $css; |
|
| 2934 | + } |
|
| 2935 | 2935 | |
| 2936 | - $url_absolue_css = url_absolue($css); |
|
| 2936 | + $url_absolue_css = url_absolue($css); |
|
| 2937 | 2937 | |
| 2938 | - $f = basename($css, '.css'); |
|
| 2939 | - $f = sous_repertoire(_DIR_VAR, 'cache-css') |
|
| 2940 | - . preg_replace(",(.*?)(_rtl|_ltr)?$,", "\\1-urlabs-" . substr(md5("$css-urlabs"), 0, 4) . "\\2", $f) |
|
| 2941 | - . '.css'; |
|
| 2938 | + $f = basename($css, '.css'); |
|
| 2939 | + $f = sous_repertoire(_DIR_VAR, 'cache-css') |
|
| 2940 | + . preg_replace(",(.*?)(_rtl|_ltr)?$,", "\\1-urlabs-" . substr(md5("$css-urlabs"), 0, 4) . "\\2", $f) |
|
| 2941 | + . '.css'; |
|
| 2942 | 2942 | |
| 2943 | - if ((@filemtime($f) > @filemtime($css)) and (_VAR_MODE != 'recalcul')) { |
|
| 2944 | - return $f; |
|
| 2945 | - } |
|
| 2943 | + if ((@filemtime($f) > @filemtime($css)) and (_VAR_MODE != 'recalcul')) { |
|
| 2944 | + return $f; |
|
| 2945 | + } |
|
| 2946 | 2946 | |
| 2947 | - if ($url_absolue_css == $css) { |
|
| 2948 | - if (strncmp($GLOBALS['meta']['adresse_site'], $css, $l = strlen($GLOBALS['meta']['adresse_site'])) != 0 |
|
| 2949 | - or !lire_fichier(_DIR_RACINE . substr($css, $l), $contenu) |
|
| 2950 | - ) { |
|
| 2951 | - include_spip('inc/distant'); |
|
| 2952 | - if (!$contenu = recuperer_page($css)) { |
|
| 2953 | - return $css; |
|
| 2954 | - } |
|
| 2955 | - } |
|
| 2956 | - } elseif (!lire_fichier($css, $contenu)) { |
|
| 2957 | - return $css; |
|
| 2958 | - } |
|
| 2947 | + if ($url_absolue_css == $css) { |
|
| 2948 | + if (strncmp($GLOBALS['meta']['adresse_site'], $css, $l = strlen($GLOBALS['meta']['adresse_site'])) != 0 |
|
| 2949 | + or !lire_fichier(_DIR_RACINE . substr($css, $l), $contenu) |
|
| 2950 | + ) { |
|
| 2951 | + include_spip('inc/distant'); |
|
| 2952 | + if (!$contenu = recuperer_page($css)) { |
|
| 2953 | + return $css; |
|
| 2954 | + } |
|
| 2955 | + } |
|
| 2956 | + } elseif (!lire_fichier($css, $contenu)) { |
|
| 2957 | + return $css; |
|
| 2958 | + } |
|
| 2959 | 2959 | |
| 2960 | - // passer les url relatives a la css d'origine en url absolues |
|
| 2961 | - $contenu = urls_absolues_css($contenu, $css); |
|
| 2960 | + // passer les url relatives a la css d'origine en url absolues |
|
| 2961 | + $contenu = urls_absolues_css($contenu, $css); |
|
| 2962 | 2962 | |
| 2963 | - // ecrire la css |
|
| 2964 | - if (!ecrire_fichier($f, $contenu)) { |
|
| 2965 | - return $css; |
|
| 2966 | - } |
|
| 2963 | + // ecrire la css |
|
| 2964 | + if (!ecrire_fichier($f, $contenu)) { |
|
| 2965 | + return $css; |
|
| 2966 | + } |
|
| 2967 | 2967 | |
| 2968 | - return $f; |
|
| 2968 | + return $f; |
|
| 2969 | 2969 | } |
| 2970 | 2970 | |
| 2971 | 2971 | |
@@ -2999,24 +2999,24 @@ discard block |
||
| 2999 | 2999 | * Valeur trouvée ou valeur par défaut. |
| 3000 | 3000 | **/ |
| 3001 | 3001 | function table_valeur($table, $cle, $defaut = '', $conserver_null = false) { |
| 3002 | - foreach (explode('/', $cle) as $k) { |
|
| 3002 | + foreach (explode('/', $cle) as $k) { |
|
| 3003 | 3003 | |
| 3004 | - $table = is_string($table) ? @unserialize($table) : $table; |
|
| 3004 | + $table = is_string($table) ? @unserialize($table) : $table; |
|
| 3005 | 3005 | |
| 3006 | - if (is_object($table)) { |
|
| 3007 | - $table = (($k !== "") and isset($table->$k)) ? $table->$k : $defaut; |
|
| 3008 | - } elseif (is_array($table)) { |
|
| 3009 | - if ($conserver_null) { |
|
| 3010 | - $table = array_key_exists($k, $table) ? $table[$k] : $defaut; |
|
| 3011 | - } else { |
|
| 3012 | - $table = isset($table[$k]) ? $table[$k] : $defaut; |
|
| 3013 | - } |
|
| 3014 | - } else { |
|
| 3015 | - $table = $defaut; |
|
| 3016 | - } |
|
| 3017 | - } |
|
| 3006 | + if (is_object($table)) { |
|
| 3007 | + $table = (($k !== "") and isset($table->$k)) ? $table->$k : $defaut; |
|
| 3008 | + } elseif (is_array($table)) { |
|
| 3009 | + if ($conserver_null) { |
|
| 3010 | + $table = array_key_exists($k, $table) ? $table[$k] : $defaut; |
|
| 3011 | + } else { |
|
| 3012 | + $table = isset($table[$k]) ? $table[$k] : $defaut; |
|
| 3013 | + } |
|
| 3014 | + } else { |
|
| 3015 | + $table = $defaut; |
|
| 3016 | + } |
|
| 3017 | + } |
|
| 3018 | 3018 | |
| 3019 | - return $table; |
|
| 3019 | + return $table; |
|
| 3020 | 3020 | } |
| 3021 | 3021 | |
| 3022 | 3022 | /** |
@@ -3049,22 +3049,22 @@ discard block |
||
| 3049 | 3049 | * - string : expression trouvée. |
| 3050 | 3050 | **/ |
| 3051 | 3051 | function match($texte, $expression, $modif = "UimsS", $capte = 0) { |
| 3052 | - if (intval($modif) and $capte == 0) { |
|
| 3053 | - $capte = $modif; |
|
| 3054 | - $modif = "UimsS"; |
|
| 3055 | - } |
|
| 3056 | - $expression = str_replace("\/", "/", $expression); |
|
| 3057 | - $expression = str_replace("/", "\/", $expression); |
|
| 3052 | + if (intval($modif) and $capte == 0) { |
|
| 3053 | + $capte = $modif; |
|
| 3054 | + $modif = "UimsS"; |
|
| 3055 | + } |
|
| 3056 | + $expression = str_replace("\/", "/", $expression); |
|
| 3057 | + $expression = str_replace("/", "\/", $expression); |
|
| 3058 | 3058 | |
| 3059 | - if (preg_match('/' . $expression . '/' . $modif, $texte, $r)) { |
|
| 3060 | - if (isset($r[$capte])) { |
|
| 3061 | - return $r[$capte]; |
|
| 3062 | - } else { |
|
| 3063 | - return true; |
|
| 3064 | - } |
|
| 3065 | - } |
|
| 3059 | + if (preg_match('/' . $expression . '/' . $modif, $texte, $r)) { |
|
| 3060 | + if (isset($r[$capte])) { |
|
| 3061 | + return $r[$capte]; |
|
| 3062 | + } else { |
|
| 3063 | + return true; |
|
| 3064 | + } |
|
| 3065 | + } |
|
| 3066 | 3066 | |
| 3067 | - return false; |
|
| 3067 | + return false; |
|
| 3068 | 3068 | } |
| 3069 | 3069 | |
| 3070 | 3070 | |
@@ -3091,10 +3091,10 @@ discard block |
||
| 3091 | 3091 | * Texte |
| 3092 | 3092 | **/ |
| 3093 | 3093 | function replace($texte, $expression, $replace = '', $modif = "UimsS") { |
| 3094 | - $expression = str_replace("\/", "/", $expression); |
|
| 3095 | - $expression = str_replace("/", "\/", $expression); |
|
| 3094 | + $expression = str_replace("\/", "/", $expression); |
|
| 3095 | + $expression = str_replace("/", "\/", $expression); |
|
| 3096 | 3096 | |
| 3097 | - return preg_replace('/' . $expression . '/' . $modif, $replace, $texte); |
|
| 3097 | + return preg_replace('/' . $expression . '/' . $modif, $replace, $texte); |
|
| 3098 | 3098 | } |
| 3099 | 3099 | |
| 3100 | 3100 | |
@@ -3112,21 +3112,21 @@ discard block |
||
| 3112 | 3112 | **/ |
| 3113 | 3113 | function traiter_doublons_documents(&$doublons, $letexte) { |
| 3114 | 3114 | |
| 3115 | - // Verifier dans le texte & les notes (pas beau, helas) |
|
| 3116 | - $t = $letexte . $GLOBALS['les_notes']; |
|
| 3115 | + // Verifier dans le texte & les notes (pas beau, helas) |
|
| 3116 | + $t = $letexte . $GLOBALS['les_notes']; |
|
| 3117 | 3117 | |
| 3118 | - if (strstr($t, 'spip_document_') // evite le preg_match_all si inutile |
|
| 3119 | - and preg_match_all( |
|
| 3120 | - ',<[^>]+\sclass=["\']spip_document_([0-9]+)[\s"\'],imsS', |
|
| 3121 | - $t, $matches, PREG_PATTERN_ORDER) |
|
| 3122 | - ) { |
|
| 3123 | - if (!isset($doublons['documents'])) { |
|
| 3124 | - $doublons['documents'] = ""; |
|
| 3125 | - } |
|
| 3126 | - $doublons['documents'] .= "," . join(',', $matches[1]); |
|
| 3127 | - } |
|
| 3118 | + if (strstr($t, 'spip_document_') // evite le preg_match_all si inutile |
|
| 3119 | + and preg_match_all( |
|
| 3120 | + ',<[^>]+\sclass=["\']spip_document_([0-9]+)[\s"\'],imsS', |
|
| 3121 | + $t, $matches, PREG_PATTERN_ORDER) |
|
| 3122 | + ) { |
|
| 3123 | + if (!isset($doublons['documents'])) { |
|
| 3124 | + $doublons['documents'] = ""; |
|
| 3125 | + } |
|
| 3126 | + $doublons['documents'] .= "," . join(',', $matches[1]); |
|
| 3127 | + } |
|
| 3128 | 3128 | |
| 3129 | - return $letexte; |
|
| 3129 | + return $letexte; |
|
| 3130 | 3130 | } |
| 3131 | 3131 | |
| 3132 | 3132 | /** |
@@ -3140,7 +3140,7 @@ discard block |
||
| 3140 | 3140 | * @return string Chaîne vide |
| 3141 | 3141 | **/ |
| 3142 | 3142 | function vide($texte) { |
| 3143 | - return ""; |
|
| 3143 | + return ""; |
|
| 3144 | 3144 | } |
| 3145 | 3145 | |
| 3146 | 3146 | // |
@@ -3169,23 +3169,23 @@ discard block |
||
| 3169 | 3169 | * Code HTML résultant |
| 3170 | 3170 | **/ |
| 3171 | 3171 | function env_to_params($env, $ignore_params = array()) { |
| 3172 | - $ignore_params = array_merge( |
|
| 3173 | - array('id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'), |
|
| 3174 | - $ignore_params |
|
| 3175 | - ); |
|
| 3176 | - if (!is_array($env)) { |
|
| 3177 | - $env = unserialize($env); |
|
| 3178 | - } |
|
| 3179 | - $texte = ""; |
|
| 3180 | - if ($env) { |
|
| 3181 | - foreach ($env as $i => $j) { |
|
| 3182 | - if (is_string($j) and !in_array($i, $ignore_params)) { |
|
| 3183 | - $texte .= "<param name='" . $i . "'\n\tvalue='" . $j . "' />"; |
|
| 3184 | - } |
|
| 3185 | - } |
|
| 3186 | - } |
|
| 3187 | - |
|
| 3188 | - return $texte; |
|
| 3172 | + $ignore_params = array_merge( |
|
| 3173 | + array('id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'), |
|
| 3174 | + $ignore_params |
|
| 3175 | + ); |
|
| 3176 | + if (!is_array($env)) { |
|
| 3177 | + $env = unserialize($env); |
|
| 3178 | + } |
|
| 3179 | + $texte = ""; |
|
| 3180 | + if ($env) { |
|
| 3181 | + foreach ($env as $i => $j) { |
|
| 3182 | + if (is_string($j) and !in_array($i, $ignore_params)) { |
|
| 3183 | + $texte .= "<param name='" . $i . "'\n\tvalue='" . $j . "' />"; |
|
| 3184 | + } |
|
| 3185 | + } |
|
| 3186 | + } |
|
| 3187 | + |
|
| 3188 | + return $texte; |
|
| 3189 | 3189 | } |
| 3190 | 3190 | |
| 3191 | 3191 | /** |
@@ -3208,23 +3208,23 @@ discard block |
||
| 3208 | 3208 | * Code HTML résultant |
| 3209 | 3209 | **/ |
| 3210 | 3210 | function env_to_attributs($env, $ignore_params = array()) { |
| 3211 | - $ignore_params = array_merge( |
|
| 3212 | - array('id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'), |
|
| 3213 | - $ignore_params |
|
| 3214 | - ); |
|
| 3215 | - if (!is_array($env)) { |
|
| 3216 | - $env = unserialize($env); |
|
| 3217 | - } |
|
| 3218 | - $texte = ""; |
|
| 3219 | - if ($env) { |
|
| 3220 | - foreach ($env as $i => $j) { |
|
| 3221 | - if (is_string($j) and !in_array($i, $ignore_params)) { |
|
| 3222 | - $texte .= $i . "='" . $j . "' "; |
|
| 3223 | - } |
|
| 3224 | - } |
|
| 3225 | - } |
|
| 3211 | + $ignore_params = array_merge( |
|
| 3212 | + array('id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'), |
|
| 3213 | + $ignore_params |
|
| 3214 | + ); |
|
| 3215 | + if (!is_array($env)) { |
|
| 3216 | + $env = unserialize($env); |
|
| 3217 | + } |
|
| 3218 | + $texte = ""; |
|
| 3219 | + if ($env) { |
|
| 3220 | + foreach ($env as $i => $j) { |
|
| 3221 | + if (is_string($j) and !in_array($i, $ignore_params)) { |
|
| 3222 | + $texte .= $i . "='" . $j . "' "; |
|
| 3223 | + } |
|
| 3224 | + } |
|
| 3225 | + } |
|
| 3226 | 3226 | |
| 3227 | - return $texte; |
|
| 3227 | + return $texte; |
|
| 3228 | 3228 | } |
| 3229 | 3229 | |
| 3230 | 3230 | |
@@ -3241,9 +3241,9 @@ discard block |
||
| 3241 | 3241 | * @return string Chaînes concaténés |
| 3242 | 3242 | **/ |
| 3243 | 3243 | function concat() { |
| 3244 | - $args = func_get_args(); |
|
| 3244 | + $args = func_get_args(); |
|
| 3245 | 3245 | |
| 3246 | - return join('', $args); |
|
| 3246 | + return join('', $args); |
|
| 3247 | 3247 | } |
| 3248 | 3248 | |
| 3249 | 3249 | |
@@ -3263,23 +3263,23 @@ discard block |
||
| 3263 | 3263 | * Contenu du ou des fichiers, concaténé |
| 3264 | 3264 | **/ |
| 3265 | 3265 | function charge_scripts($files, $script = true) { |
| 3266 | - $flux = ""; |
|
| 3267 | - foreach (is_array($files) ? $files : explode("|", $files) as $file) { |
|
| 3268 | - if (!is_string($file)) { |
|
| 3269 | - continue; |
|
| 3270 | - } |
|
| 3271 | - if ($script) { |
|
| 3272 | - $file = preg_match(",^\w+$,", $file) ? "javascript/$file.js" : ''; |
|
| 3273 | - } |
|
| 3274 | - if ($file) { |
|
| 3275 | - $path = find_in_path($file); |
|
| 3276 | - if ($path) { |
|
| 3277 | - $flux .= spip_file_get_contents($path); |
|
| 3278 | - } |
|
| 3279 | - } |
|
| 3280 | - } |
|
| 3266 | + $flux = ""; |
|
| 3267 | + foreach (is_array($files) ? $files : explode("|", $files) as $file) { |
|
| 3268 | + if (!is_string($file)) { |
|
| 3269 | + continue; |
|
| 3270 | + } |
|
| 3271 | + if ($script) { |
|
| 3272 | + $file = preg_match(",^\w+$,", $file) ? "javascript/$file.js" : ''; |
|
| 3273 | + } |
|
| 3274 | + if ($file) { |
|
| 3275 | + $path = find_in_path($file); |
|
| 3276 | + if ($path) { |
|
| 3277 | + $flux .= spip_file_get_contents($path); |
|
| 3278 | + } |
|
| 3279 | + } |
|
| 3280 | + } |
|
| 3281 | 3281 | |
| 3282 | - return $flux; |
|
| 3282 | + return $flux; |
|
| 3283 | 3283 | } |
| 3284 | 3284 | |
| 3285 | 3285 | |
@@ -3300,46 +3300,46 @@ discard block |
||
| 3300 | 3300 | * @return string |
| 3301 | 3301 | */ |
| 3302 | 3302 | function http_img_pack($img, $alt, $atts = '', $title = '', $options = array()) { |
| 3303 | - $img_file = $img; |
|
| 3304 | - if (!isset($options['chemin_image']) or $options['chemin_image'] == true) { |
|
| 3305 | - $img_file = chemin_image($img); |
|
| 3306 | - } |
|
| 3307 | - else { |
|
| 3308 | - if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true){ |
|
| 3309 | - // on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png |
|
| 3310 | - // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png |
|
| 3311 | - if (preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m) |
|
| 3312 | - and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . "-xx.svg" |
|
| 3313 | - and file_exists($variante_svg_generique)) { |
|
| 3314 | - if ($variante_svg_size = substr($variante_svg_generique,0,-6) . $m[1] . ".svg" and file_exists($variante_svg_size)) { |
|
| 3315 | - $img_file = $variante_svg_size; |
|
| 3316 | - } |
|
| 3317 | - else { |
|
| 3318 | - $img_file = $variante_svg_generique; |
|
| 3319 | - } |
|
| 3320 | - } |
|
| 3321 | - } |
|
| 3322 | - } |
|
| 3323 | - if (stripos($atts, 'width') === false) { |
|
| 3324 | - // utiliser directement l'info de taille presente dans le nom |
|
| 3325 | - if ((!isset($options['utiliser_suffixe_size']) or $options['utiliser_suffixe_size'] == true) |
|
| 3326 | - and preg_match(',-([0-9]+)[.](png|gif|svg)$,', $img, $regs) |
|
| 3327 | - ) { |
|
| 3328 | - $largeur = $hauteur = intval($regs[1]); |
|
| 3329 | - } else { |
|
| 3330 | - $taille = taille_image($img_file); |
|
| 3331 | - list($hauteur, $largeur) = $taille; |
|
| 3332 | - if (!$hauteur or !$largeur) { |
|
| 3333 | - return ""; |
|
| 3334 | - } |
|
| 3335 | - } |
|
| 3336 | - $atts .= " width='" . $largeur . "' height='" . $hauteur . "'"; |
|
| 3337 | - } |
|
| 3338 | - |
|
| 3339 | - return "<img src='$img_file' alt='" . attribut_html($alt ? $alt : $title) . "'" |
|
| 3340 | - . ($title ? ' title="' . attribut_html($title) . '"' : '') |
|
| 3341 | - . " " . ltrim($atts) |
|
| 3342 | - . " />"; |
|
| 3303 | + $img_file = $img; |
|
| 3304 | + if (!isset($options['chemin_image']) or $options['chemin_image'] == true) { |
|
| 3305 | + $img_file = chemin_image($img); |
|
| 3306 | + } |
|
| 3307 | + else { |
|
| 3308 | + if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true){ |
|
| 3309 | + // on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png |
|
| 3310 | + // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png |
|
| 3311 | + if (preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m) |
|
| 3312 | + and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . "-xx.svg" |
|
| 3313 | + and file_exists($variante_svg_generique)) { |
|
| 3314 | + if ($variante_svg_size = substr($variante_svg_generique,0,-6) . $m[1] . ".svg" and file_exists($variante_svg_size)) { |
|
| 3315 | + $img_file = $variante_svg_size; |
|
| 3316 | + } |
|
| 3317 | + else { |
|
| 3318 | + $img_file = $variante_svg_generique; |
|
| 3319 | + } |
|
| 3320 | + } |
|
| 3321 | + } |
|
| 3322 | + } |
|
| 3323 | + if (stripos($atts, 'width') === false) { |
|
| 3324 | + // utiliser directement l'info de taille presente dans le nom |
|
| 3325 | + if ((!isset($options['utiliser_suffixe_size']) or $options['utiliser_suffixe_size'] == true) |
|
| 3326 | + and preg_match(',-([0-9]+)[.](png|gif|svg)$,', $img, $regs) |
|
| 3327 | + ) { |
|
| 3328 | + $largeur = $hauteur = intval($regs[1]); |
|
| 3329 | + } else { |
|
| 3330 | + $taille = taille_image($img_file); |
|
| 3331 | + list($hauteur, $largeur) = $taille; |
|
| 3332 | + if (!$hauteur or !$largeur) { |
|
| 3333 | + return ""; |
|
| 3334 | + } |
|
| 3335 | + } |
|
| 3336 | + $atts .= " width='" . $largeur . "' height='" . $hauteur . "'"; |
|
| 3337 | + } |
|
| 3338 | + |
|
| 3339 | + return "<img src='$img_file' alt='" . attribut_html($alt ? $alt : $title) . "'" |
|
| 3340 | + . ($title ? ' title="' . attribut_html($title) . '"' : '') |
|
| 3341 | + . " " . ltrim($atts) |
|
| 3342 | + . " />"; |
|
| 3343 | 3343 | } |
| 3344 | 3344 | |
| 3345 | 3345 | /** |
@@ -3351,13 +3351,13 @@ discard block |
||
| 3351 | 3351 | * @return string |
| 3352 | 3352 | */ |
| 3353 | 3353 | function http_style_background($img, $att = '', $size=null) { |
| 3354 | - if ($size and is_numeric($size)){ |
|
| 3355 | - $size = trim($size) . "px"; |
|
| 3356 | - } |
|
| 3357 | - return " style='background" . |
|
| 3358 | - ($att ? "" : "-image") . ": url(\"" . chemin_image($img) . "\")" . ($att ? (' ' . $att) : '') . ";" |
|
| 3359 | - . ($size ? "background-size:{$size};" : '') |
|
| 3360 | - . "'"; |
|
| 3354 | + if ($size and is_numeric($size)){ |
|
| 3355 | + $size = trim($size) . "px"; |
|
| 3356 | + } |
|
| 3357 | + return " style='background" . |
|
| 3358 | + ($att ? "" : "-image") . ": url(\"" . chemin_image($img) . "\")" . ($att ? (' ' . $att) : '') . ";" |
|
| 3359 | + . ($size ? "background-size:{$size};" : '') |
|
| 3360 | + . "'"; |
|
| 3361 | 3361 | } |
| 3362 | 3362 | |
| 3363 | 3363 | /** |
@@ -3373,17 +3373,17 @@ discard block |
||
| 3373 | 3373 | * Code HTML de la balise IMG |
| 3374 | 3374 | */ |
| 3375 | 3375 | function filtre_balise_img_dist($img, $alt = "", $class = "", $width=null) { |
| 3376 | - $atts = $class ? " class='" . attribut_html($class) . "'" : ''; |
|
| 3377 | - // ecriture courte : on donne le width en 2e arg |
|
| 3378 | - if (empty($width) and is_numeric($alt)) { |
|
| 3379 | - $width = $alt; |
|
| 3380 | - $alt = ''; |
|
| 3381 | - } |
|
| 3382 | - if ($width) { |
|
| 3383 | - $atts .= " width='{$width}'"; |
|
| 3384 | - } |
|
| 3385 | - return http_img_pack($img, $alt, $atts, '', |
|
| 3386 | - array('chemin_image' => false, 'utiliser_suffixe_size' => false)); |
|
| 3376 | + $atts = $class ? " class='" . attribut_html($class) . "'" : ''; |
|
| 3377 | + // ecriture courte : on donne le width en 2e arg |
|
| 3378 | + if (empty($width) and is_numeric($alt)) { |
|
| 3379 | + $width = $alt; |
|
| 3380 | + $alt = ''; |
|
| 3381 | + } |
|
| 3382 | + if ($width) { |
|
| 3383 | + $atts .= " width='{$width}'"; |
|
| 3384 | + } |
|
| 3385 | + return http_img_pack($img, $alt, $atts, '', |
|
| 3386 | + array('chemin_image' => false, 'utiliser_suffixe_size' => false)); |
|
| 3387 | 3387 | } |
| 3388 | 3388 | |
| 3389 | 3389 | |
@@ -3399,34 +3399,34 @@ discard block |
||
| 3399 | 3399 | * @return string |
| 3400 | 3400 | */ |
| 3401 | 3401 | function filtre_balise_svg_dist($img, $alt = "", $class = "") { |
| 3402 | - if (!$file = find_in_path($img) |
|
| 3403 | - or !$svg = file_get_contents($file)) { |
|
| 3404 | - return ''; |
|
| 3405 | - } |
|
| 3406 | - |
|
| 3407 | - if (!preg_match(",<svg\b[^>]*>,UimsS", $svg, $match)) { |
|
| 3408 | - return ''; |
|
| 3409 | - } |
|
| 3410 | - $balise_svg = $match[0]; |
|
| 3411 | - $balise_svg_source = $balise_svg; |
|
| 3412 | - // IE est toujours mon ami |
|
| 3413 | - $balise_svg = inserer_attribut($balise_svg, 'focusable', 'false'); |
|
| 3414 | - if ($class) { |
|
| 3415 | - $balise_svg = inserer_attribut($balise_svg, 'class', $class); |
|
| 3416 | - } |
|
| 3417 | - if ($alt){ |
|
| 3418 | - $balise_svg = inserer_attribut($balise_svg, 'role', 'img'); |
|
| 3419 | - $id = "img-svg-title-" . substr(md5("$file:$svg:$alt"),0,4); |
|
| 3420 | - $balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id); |
|
| 3421 | - $title = "<title id=\"$id\">" . entites_html($alt)."</title>\n"; |
|
| 3422 | - $balise_svg .= $title; |
|
| 3423 | - } |
|
| 3424 | - else { |
|
| 3425 | - $balise_svg = inserer_attribut($balise_svg, 'aria-hidden', 'true'); |
|
| 3426 | - } |
|
| 3427 | - $svg = str_replace($balise_svg_source, $balise_svg, $svg); |
|
| 3428 | - |
|
| 3429 | - return $svg; |
|
| 3402 | + if (!$file = find_in_path($img) |
|
| 3403 | + or !$svg = file_get_contents($file)) { |
|
| 3404 | + return ''; |
|
| 3405 | + } |
|
| 3406 | + |
|
| 3407 | + if (!preg_match(",<svg\b[^>]*>,UimsS", $svg, $match)) { |
|
| 3408 | + return ''; |
|
| 3409 | + } |
|
| 3410 | + $balise_svg = $match[0]; |
|
| 3411 | + $balise_svg_source = $balise_svg; |
|
| 3412 | + // IE est toujours mon ami |
|
| 3413 | + $balise_svg = inserer_attribut($balise_svg, 'focusable', 'false'); |
|
| 3414 | + if ($class) { |
|
| 3415 | + $balise_svg = inserer_attribut($balise_svg, 'class', $class); |
|
| 3416 | + } |
|
| 3417 | + if ($alt){ |
|
| 3418 | + $balise_svg = inserer_attribut($balise_svg, 'role', 'img'); |
|
| 3419 | + $id = "img-svg-title-" . substr(md5("$file:$svg:$alt"),0,4); |
|
| 3420 | + $balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id); |
|
| 3421 | + $title = "<title id=\"$id\">" . entites_html($alt)."</title>\n"; |
|
| 3422 | + $balise_svg .= $title; |
|
| 3423 | + } |
|
| 3424 | + else { |
|
| 3425 | + $balise_svg = inserer_attribut($balise_svg, 'aria-hidden', 'true'); |
|
| 3426 | + } |
|
| 3427 | + $svg = str_replace($balise_svg_source, $balise_svg, $svg); |
|
| 3428 | + |
|
| 3429 | + return $svg; |
|
| 3430 | 3430 | } |
| 3431 | 3431 | |
| 3432 | 3432 | |
@@ -3449,17 +3449,17 @@ discard block |
||
| 3449 | 3449 | * Code HTML résultant |
| 3450 | 3450 | **/ |
| 3451 | 3451 | function filtre_foreach_dist($tableau, $modele = 'foreach') { |
| 3452 | - $texte = ''; |
|
| 3453 | - if (is_array($tableau)) { |
|
| 3454 | - foreach ($tableau as $k => $v) { |
|
| 3455 | - $res = recuperer_fond('modeles/' . $modele, |
|
| 3456 | - array_merge(array('cle' => $k), (is_array($v) ? $v : array('valeur' => $v))) |
|
| 3457 | - ); |
|
| 3458 | - $texte .= $res; |
|
| 3459 | - } |
|
| 3460 | - } |
|
| 3452 | + $texte = ''; |
|
| 3453 | + if (is_array($tableau)) { |
|
| 3454 | + foreach ($tableau as $k => $v) { |
|
| 3455 | + $res = recuperer_fond('modeles/' . $modele, |
|
| 3456 | + array_merge(array('cle' => $k), (is_array($v) ? $v : array('valeur' => $v))) |
|
| 3457 | + ); |
|
| 3458 | + $texte .= $res; |
|
| 3459 | + } |
|
| 3460 | + } |
|
| 3461 | 3461 | |
| 3462 | - return $texte; |
|
| 3462 | + return $texte; |
|
| 3463 | 3463 | } |
| 3464 | 3464 | |
| 3465 | 3465 | |
@@ -3484,37 +3484,37 @@ discard block |
||
| 3484 | 3484 | * - tout : retourne toutes les informations du plugin actif |
| 3485 | 3485 | **/ |
| 3486 | 3486 | function filtre_info_plugin_dist($plugin, $type_info, $reload = false) { |
| 3487 | - include_spip('inc/plugin'); |
|
| 3488 | - $plugin = strtoupper($plugin); |
|
| 3489 | - $plugins_actifs = liste_plugin_actifs(); |
|
| 3490 | - |
|
| 3491 | - if (!$plugin) { |
|
| 3492 | - return serialize(array_keys($plugins_actifs)); |
|
| 3493 | - } elseif (empty($plugins_actifs[$plugin]) and !$reload) { |
|
| 3494 | - return ''; |
|
| 3495 | - } elseif (($type_info == 'est_actif') and !$reload) { |
|
| 3496 | - return $plugins_actifs[$plugin] ? 1 : 0; |
|
| 3497 | - } elseif (isset($plugins_actifs[$plugin][$type_info]) and !$reload) { |
|
| 3498 | - return $plugins_actifs[$plugin][$type_info]; |
|
| 3499 | - } else { |
|
| 3500 | - $get_infos = charger_fonction('get_infos', 'plugins'); |
|
| 3501 | - // On prend en compte les extensions |
|
| 3502 | - if (!is_dir($plugins_actifs[$plugin]['dir_type'])) { |
|
| 3503 | - $dir_plugins = constant($plugins_actifs[$plugin]['dir_type']); |
|
| 3504 | - } else { |
|
| 3505 | - $dir_plugins = $plugins_actifs[$plugin]['dir_type']; |
|
| 3506 | - } |
|
| 3507 | - if (!$infos = $get_infos($plugins_actifs[$plugin]['dir'], $reload, $dir_plugins)) { |
|
| 3508 | - return ''; |
|
| 3509 | - } |
|
| 3510 | - if ($type_info == 'tout') { |
|
| 3511 | - return $infos; |
|
| 3512 | - } elseif ($type_info == 'est_actif') { |
|
| 3513 | - return $infos ? 1 : 0; |
|
| 3514 | - } else { |
|
| 3515 | - return strval($infos[$type_info]); |
|
| 3516 | - } |
|
| 3517 | - } |
|
| 3487 | + include_spip('inc/plugin'); |
|
| 3488 | + $plugin = strtoupper($plugin); |
|
| 3489 | + $plugins_actifs = liste_plugin_actifs(); |
|
| 3490 | + |
|
| 3491 | + if (!$plugin) { |
|
| 3492 | + return serialize(array_keys($plugins_actifs)); |
|
| 3493 | + } elseif (empty($plugins_actifs[$plugin]) and !$reload) { |
|
| 3494 | + return ''; |
|
| 3495 | + } elseif (($type_info == 'est_actif') and !$reload) { |
|
| 3496 | + return $plugins_actifs[$plugin] ? 1 : 0; |
|
| 3497 | + } elseif (isset($plugins_actifs[$plugin][$type_info]) and !$reload) { |
|
| 3498 | + return $plugins_actifs[$plugin][$type_info]; |
|
| 3499 | + } else { |
|
| 3500 | + $get_infos = charger_fonction('get_infos', 'plugins'); |
|
| 3501 | + // On prend en compte les extensions |
|
| 3502 | + if (!is_dir($plugins_actifs[$plugin]['dir_type'])) { |
|
| 3503 | + $dir_plugins = constant($plugins_actifs[$plugin]['dir_type']); |
|
| 3504 | + } else { |
|
| 3505 | + $dir_plugins = $plugins_actifs[$plugin]['dir_type']; |
|
| 3506 | + } |
|
| 3507 | + if (!$infos = $get_infos($plugins_actifs[$plugin]['dir'], $reload, $dir_plugins)) { |
|
| 3508 | + return ''; |
|
| 3509 | + } |
|
| 3510 | + if ($type_info == 'tout') { |
|
| 3511 | + return $infos; |
|
| 3512 | + } elseif ($type_info == 'est_actif') { |
|
| 3513 | + return $infos ? 1 : 0; |
|
| 3514 | + } else { |
|
| 3515 | + return strval($infos[$type_info]); |
|
| 3516 | + } |
|
| 3517 | + } |
|
| 3518 | 3518 | } |
| 3519 | 3519 | |
| 3520 | 3520 | |
@@ -3541,9 +3541,9 @@ discard block |
||
| 3541 | 3541 | * Code HTML de l'image de puce de statut à insérer (et du menu de changement si présent) |
| 3542 | 3542 | */ |
| 3543 | 3543 | function puce_changement_statut($id_objet, $statut, $id_rubrique, $type, $ajax = false) { |
| 3544 | - $puce_statut = charger_fonction('puce_statut', 'inc'); |
|
| 3544 | + $puce_statut = charger_fonction('puce_statut', 'inc'); |
|
| 3545 | 3545 | |
| 3546 | - return $puce_statut($id_objet, $statut, $id_rubrique, $type, $ajax); |
|
| 3546 | + return $puce_statut($id_objet, $statut, $id_rubrique, $type, $ajax); |
|
| 3547 | 3547 | } |
| 3548 | 3548 | |
| 3549 | 3549 | |
@@ -3573,13 +3573,13 @@ discard block |
||
| 3573 | 3573 | * Code HTML de l'image de puce de statut à insérer (et du menu de changement si présent) |
| 3574 | 3574 | */ |
| 3575 | 3575 | function filtre_puce_statut_dist($statut, $objet, $id_objet = 0, $id_parent = 0) { |
| 3576 | - static $puce_statut = null; |
|
| 3577 | - if (!$puce_statut) { |
|
| 3578 | - $puce_statut = charger_fonction('puce_statut', 'inc'); |
|
| 3579 | - } |
|
| 3576 | + static $puce_statut = null; |
|
| 3577 | + if (!$puce_statut) { |
|
| 3578 | + $puce_statut = charger_fonction('puce_statut', 'inc'); |
|
| 3579 | + } |
|
| 3580 | 3580 | |
| 3581 | - return $puce_statut($id_objet, $statut, $id_parent, $objet, false, |
|
| 3582 | - objet_info($objet, 'editable') ? _ACTIVER_PUCE_RAPIDE : false); |
|
| 3581 | + return $puce_statut($id_objet, $statut, $id_parent, $objet, false, |
|
| 3582 | + objet_info($objet, 'editable') ? _ACTIVER_PUCE_RAPIDE : false); |
|
| 3583 | 3583 | } |
| 3584 | 3584 | |
| 3585 | 3585 | |
@@ -3606,88 +3606,88 @@ discard block |
||
| 3606 | 3606 | * hash du contexte |
| 3607 | 3607 | */ |
| 3608 | 3608 | function encoder_contexte_ajax($c, $form = '', $emboite = null, $ajaxid = '') { |
| 3609 | - if (is_string($c) |
|
| 3610 | - and @unserialize($c) !== false |
|
| 3611 | - ) { |
|
| 3612 | - $c = unserialize($c); |
|
| 3613 | - } |
|
| 3614 | - |
|
| 3615 | - // supprimer les parametres debut_x |
|
| 3616 | - // pour que la pagination ajax ne soit pas plantee |
|
| 3617 | - // si on charge la page &debut_x=1 : car alors en cliquant sur l'item 0, |
|
| 3618 | - // le debut_x=0 n'existe pas, et on resterait sur 1 |
|
| 3619 | - if (is_array($c)) { |
|
| 3620 | - foreach ($c as $k => $v) { |
|
| 3621 | - if (strpos($k, 'debut_') === 0) { |
|
| 3622 | - unset($c[$k]); |
|
| 3623 | - } |
|
| 3624 | - } |
|
| 3625 | - } |
|
| 3626 | - |
|
| 3627 | - if (!function_exists('calculer_cle_action')) { |
|
| 3628 | - include_spip("inc/securiser_action"); |
|
| 3629 | - } |
|
| 3630 | - |
|
| 3631 | - $c = serialize($c); |
|
| 3632 | - $cle = calculer_cle_action($form . $c); |
|
| 3633 | - $c = "$cle:$c"; |
|
| 3634 | - |
|
| 3635 | - // on ne stocke pas les contextes dans des fichiers caches |
|
| 3636 | - // par defaut, sauf si cette configuration a ete forcee |
|
| 3637 | - // OU que la longueur de l''argument generee est plus long |
|
| 3638 | - // que ce que telere Suhosin. |
|
| 3639 | - $cache_contextes_ajax = (defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX); |
|
| 3640 | - if (!$cache_contextes_ajax) { |
|
| 3641 | - $env = $c; |
|
| 3642 | - if (function_exists('gzdeflate') && function_exists('gzinflate')) { |
|
| 3643 | - $env = gzdeflate($env); |
|
| 3644 | - // http://core.spip.net/issues/2667 | https://bugs.php.net/bug.php?id=61287 |
|
| 3645 | - if ((PHP_VERSION_ID == 50400) and !@gzinflate($env)) { |
|
| 3646 | - $cache_contextes_ajax = true; |
|
| 3647 | - spip_log("Contextes AJAX forces en fichiers ! Erreur PHP 5.4.0", _LOG_AVERTISSEMENT); |
|
| 3648 | - } |
|
| 3649 | - } |
|
| 3650 | - $env = _xor($env); |
|
| 3651 | - $env = base64_encode($env); |
|
| 3652 | - // tester Suhosin et la valeur maximale des variables en GET... |
|
| 3653 | - if ($max_len = @ini_get('suhosin.get.max_value_length') |
|
| 3654 | - and $max_len < ($len = strlen($env)) |
|
| 3655 | - ) { |
|
| 3656 | - $cache_contextes_ajax = true; |
|
| 3657 | - spip_log("Contextes AJAX forces en fichiers !" |
|
| 3658 | - . " Cela arrive lorsque la valeur du contexte" |
|
| 3659 | - . " depasse la longueur maximale autorisee par Suhosin" |
|
| 3660 | - . " ($max_len) dans 'suhosin.get.max_value_length'. Ici : $len." |
|
| 3661 | - . " Vous devriez modifier les parametres de Suhosin" |
|
| 3662 | - . " pour accepter au moins 1024 caracteres.", _LOG_AVERTISSEMENT); |
|
| 3663 | - } |
|
| 3664 | - } |
|
| 3665 | - |
|
| 3666 | - if ($cache_contextes_ajax) { |
|
| 3667 | - $dir = sous_repertoire(_DIR_CACHE, 'contextes'); |
|
| 3668 | - // stocker les contextes sur disque et ne passer qu'un hash dans l'url |
|
| 3669 | - $md5 = md5($c); |
|
| 3670 | - ecrire_fichier("$dir/c$md5", $c); |
|
| 3671 | - $env = $md5; |
|
| 3672 | - } |
|
| 3673 | - |
|
| 3674 | - if ($emboite === null) { |
|
| 3675 | - return $env; |
|
| 3676 | - } |
|
| 3677 | - if (!trim($emboite)) { |
|
| 3678 | - return ""; |
|
| 3679 | - } |
|
| 3680 | - // toujours encoder l'url source dans le bloc ajax |
|
| 3681 | - $r = self(); |
|
| 3682 | - $r = ' data-origin="' . $r . '"'; |
|
| 3683 | - $class = 'ajaxbloc'; |
|
| 3684 | - if ($ajaxid and is_string($ajaxid)) { |
|
| 3685 | - // ajaxid est normalement conforme a un nom de classe css |
|
| 3686 | - // on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution |
|
| 3687 | - $class .= ' ajax-id-' . entites_html($ajaxid); |
|
| 3688 | - } |
|
| 3689 | - |
|
| 3690 | - return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n"; |
|
| 3609 | + if (is_string($c) |
|
| 3610 | + and @unserialize($c) !== false |
|
| 3611 | + ) { |
|
| 3612 | + $c = unserialize($c); |
|
| 3613 | + } |
|
| 3614 | + |
|
| 3615 | + // supprimer les parametres debut_x |
|
| 3616 | + // pour que la pagination ajax ne soit pas plantee |
|
| 3617 | + // si on charge la page &debut_x=1 : car alors en cliquant sur l'item 0, |
|
| 3618 | + // le debut_x=0 n'existe pas, et on resterait sur 1 |
|
| 3619 | + if (is_array($c)) { |
|
| 3620 | + foreach ($c as $k => $v) { |
|
| 3621 | + if (strpos($k, 'debut_') === 0) { |
|
| 3622 | + unset($c[$k]); |
|
| 3623 | + } |
|
| 3624 | + } |
|
| 3625 | + } |
|
| 3626 | + |
|
| 3627 | + if (!function_exists('calculer_cle_action')) { |
|
| 3628 | + include_spip("inc/securiser_action"); |
|
| 3629 | + } |
|
| 3630 | + |
|
| 3631 | + $c = serialize($c); |
|
| 3632 | + $cle = calculer_cle_action($form . $c); |
|
| 3633 | + $c = "$cle:$c"; |
|
| 3634 | + |
|
| 3635 | + // on ne stocke pas les contextes dans des fichiers caches |
|
| 3636 | + // par defaut, sauf si cette configuration a ete forcee |
|
| 3637 | + // OU que la longueur de l''argument generee est plus long |
|
| 3638 | + // que ce que telere Suhosin. |
|
| 3639 | + $cache_contextes_ajax = (defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX); |
|
| 3640 | + if (!$cache_contextes_ajax) { |
|
| 3641 | + $env = $c; |
|
| 3642 | + if (function_exists('gzdeflate') && function_exists('gzinflate')) { |
|
| 3643 | + $env = gzdeflate($env); |
|
| 3644 | + // http://core.spip.net/issues/2667 | https://bugs.php.net/bug.php?id=61287 |
|
| 3645 | + if ((PHP_VERSION_ID == 50400) and !@gzinflate($env)) { |
|
| 3646 | + $cache_contextes_ajax = true; |
|
| 3647 | + spip_log("Contextes AJAX forces en fichiers ! Erreur PHP 5.4.0", _LOG_AVERTISSEMENT); |
|
| 3648 | + } |
|
| 3649 | + } |
|
| 3650 | + $env = _xor($env); |
|
| 3651 | + $env = base64_encode($env); |
|
| 3652 | + // tester Suhosin et la valeur maximale des variables en GET... |
|
| 3653 | + if ($max_len = @ini_get('suhosin.get.max_value_length') |
|
| 3654 | + and $max_len < ($len = strlen($env)) |
|
| 3655 | + ) { |
|
| 3656 | + $cache_contextes_ajax = true; |
|
| 3657 | + spip_log("Contextes AJAX forces en fichiers !" |
|
| 3658 | + . " Cela arrive lorsque la valeur du contexte" |
|
| 3659 | + . " depasse la longueur maximale autorisee par Suhosin" |
|
| 3660 | + . " ($max_len) dans 'suhosin.get.max_value_length'. Ici : $len." |
|
| 3661 | + . " Vous devriez modifier les parametres de Suhosin" |
|
| 3662 | + . " pour accepter au moins 1024 caracteres.", _LOG_AVERTISSEMENT); |
|
| 3663 | + } |
|
| 3664 | + } |
|
| 3665 | + |
|
| 3666 | + if ($cache_contextes_ajax) { |
|
| 3667 | + $dir = sous_repertoire(_DIR_CACHE, 'contextes'); |
|
| 3668 | + // stocker les contextes sur disque et ne passer qu'un hash dans l'url |
|
| 3669 | + $md5 = md5($c); |
|
| 3670 | + ecrire_fichier("$dir/c$md5", $c); |
|
| 3671 | + $env = $md5; |
|
| 3672 | + } |
|
| 3673 | + |
|
| 3674 | + if ($emboite === null) { |
|
| 3675 | + return $env; |
|
| 3676 | + } |
|
| 3677 | + if (!trim($emboite)) { |
|
| 3678 | + return ""; |
|
| 3679 | + } |
|
| 3680 | + // toujours encoder l'url source dans le bloc ajax |
|
| 3681 | + $r = self(); |
|
| 3682 | + $r = ' data-origin="' . $r . '"'; |
|
| 3683 | + $class = 'ajaxbloc'; |
|
| 3684 | + if ($ajaxid and is_string($ajaxid)) { |
|
| 3685 | + // ajaxid est normalement conforme a un nom de classe css |
|
| 3686 | + // on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution |
|
| 3687 | + $class .= ' ajax-id-' . entites_html($ajaxid); |
|
| 3688 | + } |
|
| 3689 | + |
|
| 3690 | + return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n"; |
|
| 3691 | 3691 | } |
| 3692 | 3692 | |
| 3693 | 3693 | /** |
@@ -3707,36 +3707,36 @@ discard block |
||
| 3707 | 3707 | * - false : erreur de décodage |
| 3708 | 3708 | */ |
| 3709 | 3709 | function decoder_contexte_ajax($c, $form = '') { |
| 3710 | - if (!function_exists('calculer_cle_action')) { |
|
| 3711 | - include_spip("inc/securiser_action"); |
|
| 3712 | - } |
|
| 3713 | - if (((defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX) or strlen($c) == 32) |
|
| 3714 | - and $dir = sous_repertoire(_DIR_CACHE, 'contextes') |
|
| 3715 | - and lire_fichier("$dir/c$c", $contexte) |
|
| 3716 | - ) { |
|
| 3717 | - $c = $contexte; |
|
| 3718 | - } else { |
|
| 3719 | - $c = @base64_decode($c); |
|
| 3720 | - $c = _xor($c); |
|
| 3721 | - if (function_exists('gzdeflate') && function_exists('gzinflate')) { |
|
| 3722 | - $c = @gzinflate($c); |
|
| 3723 | - } |
|
| 3724 | - } |
|
| 3725 | - |
|
| 3726 | - // extraire la signature en debut de contexte |
|
| 3727 | - // et la verifier avant de deserializer |
|
| 3728 | - // format : signature:donneesserializees |
|
| 3729 | - if ($p = strpos($c,":")){ |
|
| 3730 | - $cle = substr($c,0,$p); |
|
| 3731 | - $c = substr($c,$p+1); |
|
| 3732 | - |
|
| 3733 | - if ($cle == calculer_cle_action($form . $c)) { |
|
| 3734 | - $env = @unserialize($c); |
|
| 3735 | - return $env; |
|
| 3736 | - } |
|
| 3737 | - } |
|
| 3738 | - |
|
| 3739 | - return false; |
|
| 3710 | + if (!function_exists('calculer_cle_action')) { |
|
| 3711 | + include_spip("inc/securiser_action"); |
|
| 3712 | + } |
|
| 3713 | + if (((defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX) or strlen($c) == 32) |
|
| 3714 | + and $dir = sous_repertoire(_DIR_CACHE, 'contextes') |
|
| 3715 | + and lire_fichier("$dir/c$c", $contexte) |
|
| 3716 | + ) { |
|
| 3717 | + $c = $contexte; |
|
| 3718 | + } else { |
|
| 3719 | + $c = @base64_decode($c); |
|
| 3720 | + $c = _xor($c); |
|
| 3721 | + if (function_exists('gzdeflate') && function_exists('gzinflate')) { |
|
| 3722 | + $c = @gzinflate($c); |
|
| 3723 | + } |
|
| 3724 | + } |
|
| 3725 | + |
|
| 3726 | + // extraire la signature en debut de contexte |
|
| 3727 | + // et la verifier avant de deserializer |
|
| 3728 | + // format : signature:donneesserializees |
|
| 3729 | + if ($p = strpos($c,":")){ |
|
| 3730 | + $cle = substr($c,0,$p); |
|
| 3731 | + $c = substr($c,$p+1); |
|
| 3732 | + |
|
| 3733 | + if ($cle == calculer_cle_action($form . $c)) { |
|
| 3734 | + $env = @unserialize($c); |
|
| 3735 | + return $env; |
|
| 3736 | + } |
|
| 3737 | + } |
|
| 3738 | + |
|
| 3739 | + return false; |
|
| 3740 | 3740 | } |
| 3741 | 3741 | |
| 3742 | 3742 | |
@@ -3754,20 +3754,20 @@ discard block |
||
| 3754 | 3754 | * Message décrypté ou encrypté |
| 3755 | 3755 | **/ |
| 3756 | 3756 | function _xor($message, $key = null) { |
| 3757 | - if (is_null($key)) { |
|
| 3758 | - if (!function_exists('calculer_cle_action')) { |
|
| 3759 | - include_spip("inc/securiser_action"); |
|
| 3760 | - } |
|
| 3761 | - $key = pack("H*", calculer_cle_action('_xor')); |
|
| 3762 | - } |
|
| 3757 | + if (is_null($key)) { |
|
| 3758 | + if (!function_exists('calculer_cle_action')) { |
|
| 3759 | + include_spip("inc/securiser_action"); |
|
| 3760 | + } |
|
| 3761 | + $key = pack("H*", calculer_cle_action('_xor')); |
|
| 3762 | + } |
|
| 3763 | 3763 | |
| 3764 | - $keylen = strlen($key); |
|
| 3765 | - $messagelen = strlen($message); |
|
| 3766 | - for ($i = 0; $i < $messagelen; $i++) { |
|
| 3767 | - $message[$i] = ~($message[$i] ^ $key[$i % $keylen]); |
|
| 3768 | - } |
|
| 3764 | + $keylen = strlen($key); |
|
| 3765 | + $messagelen = strlen($message); |
|
| 3766 | + for ($i = 0; $i < $messagelen; $i++) { |
|
| 3767 | + $message[$i] = ~($message[$i] ^ $key[$i % $keylen]); |
|
| 3768 | + } |
|
| 3769 | 3769 | |
| 3770 | - return $message; |
|
| 3770 | + return $message; |
|
| 3771 | 3771 | } |
| 3772 | 3772 | |
| 3773 | 3773 | /** |
@@ -3825,22 +3825,22 @@ discard block |
||
| 3825 | 3825 | * Code HTML |
| 3826 | 3826 | */ |
| 3827 | 3827 | function lien_ou_expose($url, $libelle = null, $on = false, $class = "", $title = "", $rel = "", $evt = '') { |
| 3828 | - if ($on) { |
|
| 3829 | - $bal = "strong"; |
|
| 3830 | - $att = "class='on'"; |
|
| 3831 | - } else { |
|
| 3832 | - $bal = 'a'; |
|
| 3833 | - $att = "href='$url'" |
|
| 3834 | - . ($title ? " title='" . attribut_html($title) . "'" : '') |
|
| 3835 | - . ($class ? " class='" . attribut_html($class) . "'" : '') |
|
| 3836 | - . ($rel ? " rel='" . attribut_html($rel) . "'" : '') |
|
| 3837 | - . $evt; |
|
| 3838 | - } |
|
| 3839 | - if ($libelle === null) { |
|
| 3840 | - $libelle = $url; |
|
| 3841 | - } |
|
| 3828 | + if ($on) { |
|
| 3829 | + $bal = "strong"; |
|
| 3830 | + $att = "class='on'"; |
|
| 3831 | + } else { |
|
| 3832 | + $bal = 'a'; |
|
| 3833 | + $att = "href='$url'" |
|
| 3834 | + . ($title ? " title='" . attribut_html($title) . "'" : '') |
|
| 3835 | + . ($class ? " class='" . attribut_html($class) . "'" : '') |
|
| 3836 | + . ($rel ? " rel='" . attribut_html($rel) . "'" : '') |
|
| 3837 | + . $evt; |
|
| 3838 | + } |
|
| 3839 | + if ($libelle === null) { |
|
| 3840 | + $libelle = $url; |
|
| 3841 | + } |
|
| 3842 | 3842 | |
| 3843 | - return "<$bal $att>$libelle</$bal>"; |
|
| 3843 | + return "<$bal $att>$libelle</$bal>"; |
|
| 3844 | 3844 | } |
| 3845 | 3845 | |
| 3846 | 3846 | |
@@ -3857,18 +3857,18 @@ discard block |
||
| 3857 | 3857 | * @return string : la chaine de langue finale en utilisant la fonction _T() |
| 3858 | 3858 | */ |
| 3859 | 3859 | function singulier_ou_pluriel($nb, $chaine_un, $chaine_plusieurs, $var = 'nb', $vars = array()) { |
| 3860 | - if (!$nb = intval($nb)) { |
|
| 3861 | - return ""; |
|
| 3862 | - } |
|
| 3863 | - if (!is_array($vars)) { |
|
| 3864 | - return ""; |
|
| 3865 | - } |
|
| 3866 | - $vars[$var] = $nb; |
|
| 3867 | - if ($nb > 1) { |
|
| 3868 | - return _T($chaine_plusieurs, $vars); |
|
| 3869 | - } else { |
|
| 3870 | - return _T($chaine_un, $vars); |
|
| 3871 | - } |
|
| 3860 | + if (!$nb = intval($nb)) { |
|
| 3861 | + return ""; |
|
| 3862 | + } |
|
| 3863 | + if (!is_array($vars)) { |
|
| 3864 | + return ""; |
|
| 3865 | + } |
|
| 3866 | + $vars[$var] = $nb; |
|
| 3867 | + if ($nb > 1) { |
|
| 3868 | + return _T($chaine_plusieurs, $vars); |
|
| 3869 | + } else { |
|
| 3870 | + return _T($chaine_un, $vars); |
|
| 3871 | + } |
|
| 3872 | 3872 | } |
| 3873 | 3873 | |
| 3874 | 3874 | |
@@ -3893,60 +3893,60 @@ discard block |
||
| 3893 | 3893 | * @return string |
| 3894 | 3894 | */ |
| 3895 | 3895 | function prepare_icone_base($type, $lien, $texte, $fond, $fonction = "", $class = "", $javascript = "") { |
| 3896 | - if (in_array($fonction, array("del", "supprimer.gif"))) { |
|
| 3897 | - $class .= ' danger'; |
|
| 3898 | - } elseif ($fonction == "rien.gif") { |
|
| 3899 | - $fonction = ""; |
|
| 3900 | - } elseif ($fonction == "delsafe") { |
|
| 3901 | - $fonction = "del"; |
|
| 3902 | - } |
|
| 3903 | - |
|
| 3904 | - // remappage des icone : article-24.png+new => article-new-24.png |
|
| 3905 | - if ($icone_renommer = charger_fonction('icone_renommer', 'inc', true)) { |
|
| 3906 | - list($fond, $fonction) = $icone_renommer($fond, $fonction); |
|
| 3907 | - } |
|
| 3908 | - |
|
| 3909 | - // ajouter le type d'objet dans la class de l'icone |
|
| 3910 | - $class .= " " . substr(basename($fond), 0, -4); |
|
| 3911 | - |
|
| 3912 | - $alt = attribut_html($texte); |
|
| 3913 | - $title = " title=\"$alt\""; // est-ce pertinent de doubler le alt par un title ? |
|
| 3914 | - |
|
| 3915 | - $ajax = ""; |
|
| 3916 | - if (strpos($class, "ajax") !== false) { |
|
| 3917 | - $ajax = "ajax"; |
|
| 3918 | - if (strpos($class, "preload") !== false) { |
|
| 3919 | - $ajax .= " preload"; |
|
| 3920 | - } |
|
| 3921 | - if (strpos($class, "nocache") !== false) { |
|
| 3922 | - $ajax .= " nocache"; |
|
| 3923 | - } |
|
| 3924 | - $ajax = " class='$ajax'"; |
|
| 3925 | - } |
|
| 3926 | - |
|
| 3927 | - $size = 24; |
|
| 3928 | - if (preg_match("/-([0-9]{1,3})[.](gif|png)$/i", $fond, $match)) { |
|
| 3929 | - $size = $match[1]; |
|
| 3930 | - } |
|
| 3931 | - |
|
| 3932 | - if ($fonction) { |
|
| 3933 | - // 2 images pour composer l'icone : le fond (article) en background, |
|
| 3934 | - // la fonction (new) en image |
|
| 3935 | - $icone = http_img_pack($fonction, $alt, "width='$size' height='$size'\n" . |
|
| 3936 | - http_style_background($fond, '', $size)); |
|
| 3937 | - } else { |
|
| 3938 | - $icone = http_img_pack($fond, $alt, "width='$size' height='$size'"); |
|
| 3939 | - } |
|
| 3940 | - |
|
| 3941 | - if ($type == 'lien') { |
|
| 3942 | - return "<span class='icone s$size $class'>" |
|
| 3943 | - . "<a href='$lien'$title$ajax$javascript>" |
|
| 3944 | - . $icone |
|
| 3945 | - . "<b>$texte</b>" |
|
| 3946 | - . "</a></span>\n"; |
|
| 3947 | - } else { |
|
| 3948 | - return bouton_action("$icone<b>$texte</b>", $lien, "icone s$size $class", $javascript, $alt); |
|
| 3949 | - } |
|
| 3896 | + if (in_array($fonction, array("del", "supprimer.gif"))) { |
|
| 3897 | + $class .= ' danger'; |
|
| 3898 | + } elseif ($fonction == "rien.gif") { |
|
| 3899 | + $fonction = ""; |
|
| 3900 | + } elseif ($fonction == "delsafe") { |
|
| 3901 | + $fonction = "del"; |
|
| 3902 | + } |
|
| 3903 | + |
|
| 3904 | + // remappage des icone : article-24.png+new => article-new-24.png |
|
| 3905 | + if ($icone_renommer = charger_fonction('icone_renommer', 'inc', true)) { |
|
| 3906 | + list($fond, $fonction) = $icone_renommer($fond, $fonction); |
|
| 3907 | + } |
|
| 3908 | + |
|
| 3909 | + // ajouter le type d'objet dans la class de l'icone |
|
| 3910 | + $class .= " " . substr(basename($fond), 0, -4); |
|
| 3911 | + |
|
| 3912 | + $alt = attribut_html($texte); |
|
| 3913 | + $title = " title=\"$alt\""; // est-ce pertinent de doubler le alt par un title ? |
|
| 3914 | + |
|
| 3915 | + $ajax = ""; |
|
| 3916 | + if (strpos($class, "ajax") !== false) { |
|
| 3917 | + $ajax = "ajax"; |
|
| 3918 | + if (strpos($class, "preload") !== false) { |
|
| 3919 | + $ajax .= " preload"; |
|
| 3920 | + } |
|
| 3921 | + if (strpos($class, "nocache") !== false) { |
|
| 3922 | + $ajax .= " nocache"; |
|
| 3923 | + } |
|
| 3924 | + $ajax = " class='$ajax'"; |
|
| 3925 | + } |
|
| 3926 | + |
|
| 3927 | + $size = 24; |
|
| 3928 | + if (preg_match("/-([0-9]{1,3})[.](gif|png)$/i", $fond, $match)) { |
|
| 3929 | + $size = $match[1]; |
|
| 3930 | + } |
|
| 3931 | + |
|
| 3932 | + if ($fonction) { |
|
| 3933 | + // 2 images pour composer l'icone : le fond (article) en background, |
|
| 3934 | + // la fonction (new) en image |
|
| 3935 | + $icone = http_img_pack($fonction, $alt, "width='$size' height='$size'\n" . |
|
| 3936 | + http_style_background($fond, '', $size)); |
|
| 3937 | + } else { |
|
| 3938 | + $icone = http_img_pack($fond, $alt, "width='$size' height='$size'"); |
|
| 3939 | + } |
|
| 3940 | + |
|
| 3941 | + if ($type == 'lien') { |
|
| 3942 | + return "<span class='icone s$size $class'>" |
|
| 3943 | + . "<a href='$lien'$title$ajax$javascript>" |
|
| 3944 | + . $icone |
|
| 3945 | + . "<b>$texte</b>" |
|
| 3946 | + . "</a></span>\n"; |
|
| 3947 | + } else { |
|
| 3948 | + return bouton_action("$icone<b>$texte</b>", $lien, "icone s$size $class", $javascript, $alt); |
|
| 3949 | + } |
|
| 3950 | 3950 | } |
| 3951 | 3951 | |
| 3952 | 3952 | /** |
@@ -3970,7 +3970,7 @@ discard block |
||
| 3970 | 3970 | * Code HTML du lien |
| 3971 | 3971 | **/ |
| 3972 | 3972 | function icone_base($lien, $texte, $fond, $fonction = "", $class = "", $javascript = "") { |
| 3973 | - return prepare_icone_base('lien', $lien, $texte, $fond, $fonction, $class, $javascript); |
|
| 3973 | + return prepare_icone_base('lien', $lien, $texte, $fond, $fonction, $class, $javascript); |
|
| 3974 | 3974 | } |
| 3975 | 3975 | |
| 3976 | 3976 | /** |
@@ -4005,7 +4005,7 @@ discard block |
||
| 4005 | 4005 | * Code HTML du lien |
| 4006 | 4006 | **/ |
| 4007 | 4007 | function filtre_icone_verticale_dist($lien, $texte, $fond, $fonction = "", $class = "", $javascript = "") { |
| 4008 | - return icone_base($lien, $texte, $fond, $fonction, "verticale $class", $javascript); |
|
| 4008 | + return icone_base($lien, $texte, $fond, $fonction, "verticale $class", $javascript); |
|
| 4009 | 4009 | } |
| 4010 | 4010 | |
| 4011 | 4011 | /** |
@@ -4050,7 +4050,7 @@ discard block |
||
| 4050 | 4050 | * Code HTML du lien |
| 4051 | 4051 | **/ |
| 4052 | 4052 | function filtre_icone_horizontale_dist($lien, $texte, $fond, $fonction = "", $class = "", $javascript = "") { |
| 4053 | - return icone_base($lien, $texte, $fond, $fonction, "horizontale $class", $javascript); |
|
| 4053 | + return icone_base($lien, $texte, $fond, $fonction, "horizontale $class", $javascript); |
|
| 4054 | 4054 | } |
| 4055 | 4055 | |
| 4056 | 4056 | /** |
@@ -4081,7 +4081,7 @@ discard block |
||
| 4081 | 4081 | * Code HTML du lien |
| 4082 | 4082 | **/ |
| 4083 | 4083 | function filtre_bouton_action_horizontal_dist($lien, $texte, $fond, $fonction = "", $class = "", $confirm = "") { |
| 4084 | - return prepare_icone_base('bouton', $lien, $texte, $fond, $fonction, "horizontale $class", $confirm); |
|
| 4084 | + return prepare_icone_base('bouton', $lien, $texte, $fond, $fonction, "horizontale $class", $confirm); |
|
| 4085 | 4085 | } |
| 4086 | 4086 | |
| 4087 | 4087 | /** |
@@ -4111,7 +4111,7 @@ discard block |
||
| 4111 | 4111 | * Code HTML du lien |
| 4112 | 4112 | */ |
| 4113 | 4113 | function filtre_icone_dist($lien, $texte, $fond, $align = "", $fonction = "", $class = "", $javascript = "") { |
| 4114 | - return icone_base($lien, $texte, $fond, $fonction, "verticale $align $class", $javascript); |
|
| 4114 | + return icone_base($lien, $texte, $fond, $fonction, "verticale $align $class", $javascript); |
|
| 4115 | 4115 | } |
| 4116 | 4116 | |
| 4117 | 4117 | |
@@ -4159,26 +4159,26 @@ discard block |
||
| 4159 | 4159 | * @return string Code CSS |
| 4160 | 4160 | */ |
| 4161 | 4161 | function bando_images_background() { |
| 4162 | - include_spip('inc/bandeau'); |
|
| 4163 | - // recuperer tous les boutons et leurs images |
|
| 4164 | - $boutons = definir_barre_boutons(definir_barre_contexte(), true, false); |
|
| 4162 | + include_spip('inc/bandeau'); |
|
| 4163 | + // recuperer tous les boutons et leurs images |
|
| 4164 | + $boutons = definir_barre_boutons(definir_barre_contexte(), true, false); |
|
| 4165 | 4165 | |
| 4166 | - $res = ""; |
|
| 4167 | - foreach ($boutons as $page => $detail) { |
|
| 4168 | - if ($detail->icone and strlen(trim($detail->icone))) { |
|
| 4169 | - $res .= "\n.navigation_avec_icones #bando1_$page {background-image:url(" . $detail->icone . ");}"; |
|
| 4170 | - } |
|
| 4171 | - $selecteur = (in_array($page, array('outils_rapides', 'outils_collaboratifs')) ? "" : ".navigation_avec_icones "); |
|
| 4172 | - if (is_array($detail->sousmenu)) { |
|
| 4173 | - foreach ($detail->sousmenu as $souspage => $sousdetail) { |
|
| 4174 | - if ($sousdetail->icone and strlen(trim($sousdetail->icone))) { |
|
| 4175 | - $res .= "\n$selecteur.bando2_$souspage {background-image:url(" . $sousdetail->icone . ");}"; |
|
| 4176 | - } |
|
| 4177 | - } |
|
| 4178 | - } |
|
| 4179 | - } |
|
| 4166 | + $res = ""; |
|
| 4167 | + foreach ($boutons as $page => $detail) { |
|
| 4168 | + if ($detail->icone and strlen(trim($detail->icone))) { |
|
| 4169 | + $res .= "\n.navigation_avec_icones #bando1_$page {background-image:url(" . $detail->icone . ");}"; |
|
| 4170 | + } |
|
| 4171 | + $selecteur = (in_array($page, array('outils_rapides', 'outils_collaboratifs')) ? "" : ".navigation_avec_icones "); |
|
| 4172 | + if (is_array($detail->sousmenu)) { |
|
| 4173 | + foreach ($detail->sousmenu as $souspage => $sousdetail) { |
|
| 4174 | + if ($sousdetail->icone and strlen(trim($sousdetail->icone))) { |
|
| 4175 | + $res .= "\n$selecteur.bando2_$souspage {background-image:url(" . $sousdetail->icone . ");}"; |
|
| 4176 | + } |
|
| 4177 | + } |
|
| 4178 | + } |
|
| 4179 | + } |
|
| 4180 | 4180 | |
| 4181 | - return $res; |
|
| 4181 | + return $res; |
|
| 4182 | 4182 | } |
| 4183 | 4183 | |
| 4184 | 4184 | /** |
@@ -4197,19 +4197,19 @@ discard block |
||
| 4197 | 4197 | * @return string |
| 4198 | 4198 | */ |
| 4199 | 4199 | function bouton_action($libelle, $url, $class = "", $confirm = "", $title = "", $callback = "") { |
| 4200 | - if ($confirm) { |
|
| 4201 | - $confirm = "confirm(\"" . attribut_html($confirm) . "\")"; |
|
| 4202 | - if ($callback) { |
|
| 4203 | - $callback = "$confirm?($callback):false"; |
|
| 4204 | - } else { |
|
| 4205 | - $callback = $confirm; |
|
| 4206 | - } |
|
| 4207 | - } |
|
| 4208 | - $onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : ""; |
|
| 4209 | - $title = $title ? " title='$title'" : ""; |
|
| 4200 | + if ($confirm) { |
|
| 4201 | + $confirm = "confirm(\"" . attribut_html($confirm) . "\")"; |
|
| 4202 | + if ($callback) { |
|
| 4203 | + $callback = "$confirm?($callback):false"; |
|
| 4204 | + } else { |
|
| 4205 | + $callback = $confirm; |
|
| 4206 | + } |
|
| 4207 | + } |
|
| 4208 | + $onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : ""; |
|
| 4209 | + $title = $title ? " title='$title'" : ""; |
|
| 4210 | 4210 | |
| 4211 | - return "<form class='bouton_action_post $class' method='post' action='$url'><div>" . form_hidden($url) |
|
| 4212 | - . "<button type='submit' class='submit'$title$onclick>$libelle</button></div></form>"; |
|
| 4211 | + return "<form class='bouton_action_post $class' method='post' action='$url'><div>" . form_hidden($url) |
|
| 4212 | + . "<button type='submit' class='submit'$title$onclick>$libelle</button></div></form>"; |
|
| 4213 | 4213 | } |
| 4214 | 4214 | |
| 4215 | 4215 | |
@@ -4221,7 +4221,7 @@ discard block |
||
| 4221 | 4221 | * @return string |
| 4222 | 4222 | */ |
| 4223 | 4223 | function tri_protege_champ($t) { |
| 4224 | - return preg_replace(',[^\s\w.+],', '', $t); |
|
| 4224 | + return preg_replace(',[^\s\w.+],', '', $t); |
|
| 4225 | 4225 | } |
| 4226 | 4226 | |
| 4227 | 4227 | /** |
@@ -4234,34 +4234,34 @@ discard block |
||
| 4234 | 4234 | * @return string |
| 4235 | 4235 | */ |
| 4236 | 4236 | function tri_champ_order($t, $from = null) { |
| 4237 | - if (strncmp($t, 'multi ', 6) == 0) { |
|
| 4238 | - return "multi"; |
|
| 4239 | - } |
|
| 4240 | - |
|
| 4241 | - $champ = $t; |
|
| 4242 | - |
|
| 4243 | - if (strncmp($t, 'num ', 4) == 0) { |
|
| 4244 | - $champ = substr($t, 4); |
|
| 4245 | - } |
|
| 4246 | - // enlever les autres espaces non evacues par tri_protege_champ |
|
| 4247 | - $champ = preg_replace(',\s,', '', $champ); |
|
| 4248 | - |
|
| 4249 | - if (is_array($from)) { |
|
| 4250 | - $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 4251 | - foreach ($from as $idt => $table_sql) { |
|
| 4252 | - if ($desc = $trouver_table($table_sql) |
|
| 4253 | - and isset($desc['field'][$champ]) |
|
| 4254 | - ) { |
|
| 4255 | - $champ = "$idt.$champ"; |
|
| 4256 | - break; |
|
| 4257 | - } |
|
| 4258 | - } |
|
| 4259 | - } |
|
| 4260 | - if (strncmp($t, 'num ', 4) == 0) { |
|
| 4261 | - return "0+$champ"; |
|
| 4262 | - } else { |
|
| 4263 | - return $champ; |
|
| 4264 | - } |
|
| 4237 | + if (strncmp($t, 'multi ', 6) == 0) { |
|
| 4238 | + return "multi"; |
|
| 4239 | + } |
|
| 4240 | + |
|
| 4241 | + $champ = $t; |
|
| 4242 | + |
|
| 4243 | + if (strncmp($t, 'num ', 4) == 0) { |
|
| 4244 | + $champ = substr($t, 4); |
|
| 4245 | + } |
|
| 4246 | + // enlever les autres espaces non evacues par tri_protege_champ |
|
| 4247 | + $champ = preg_replace(',\s,', '', $champ); |
|
| 4248 | + |
|
| 4249 | + if (is_array($from)) { |
|
| 4250 | + $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 4251 | + foreach ($from as $idt => $table_sql) { |
|
| 4252 | + if ($desc = $trouver_table($table_sql) |
|
| 4253 | + and isset($desc['field'][$champ]) |
|
| 4254 | + ) { |
|
| 4255 | + $champ = "$idt.$champ"; |
|
| 4256 | + break; |
|
| 4257 | + } |
|
| 4258 | + } |
|
| 4259 | + } |
|
| 4260 | + if (strncmp($t, 'num ', 4) == 0) { |
|
| 4261 | + return "0+$champ"; |
|
| 4262 | + } else { |
|
| 4263 | + return $champ; |
|
| 4264 | + } |
|
| 4265 | 4265 | } |
| 4266 | 4266 | |
| 4267 | 4267 | /** |
@@ -4275,18 +4275,18 @@ discard block |
||
| 4275 | 4275 | * @return string |
| 4276 | 4276 | */ |
| 4277 | 4277 | function tri_champ_select($t) { |
| 4278 | - if (strncmp($t, 'multi ', 6) == 0) { |
|
| 4279 | - $t = substr($t, 6); |
|
| 4280 | - $t = preg_replace(',\s,', '', $t); |
|
| 4281 | - $t = sql_multi($t, $GLOBALS['spip_lang']); |
|
| 4278 | + if (strncmp($t, 'multi ', 6) == 0) { |
|
| 4279 | + $t = substr($t, 6); |
|
| 4280 | + $t = preg_replace(',\s,', '', $t); |
|
| 4281 | + $t = sql_multi($t, $GLOBALS['spip_lang']); |
|
| 4282 | 4282 | |
| 4283 | - return $t; |
|
| 4284 | - } |
|
| 4285 | - if (trim($t) == 'hasard') { |
|
| 4286 | - return 'rand() AS hasard'; |
|
| 4287 | - } |
|
| 4283 | + return $t; |
|
| 4284 | + } |
|
| 4285 | + if (trim($t) == 'hasard') { |
|
| 4286 | + return 'rand() AS hasard'; |
|
| 4287 | + } |
|
| 4288 | 4288 | |
| 4289 | - return "''"; |
|
| 4289 | + return "''"; |
|
| 4290 | 4290 | } |
| 4291 | 4291 | |
| 4292 | 4292 | |
@@ -4308,78 +4308,78 @@ discard block |
||
| 4308 | 4308 | * @return string |
| 4309 | 4309 | */ |
| 4310 | 4310 | function generer_info_entite($id_objet, $type_objet, $info, $etoile = "") { |
| 4311 | - static $trouver_table = null; |
|
| 4312 | - static $objets; |
|
| 4313 | - |
|
| 4314 | - // On verifie qu'on a tout ce qu'il faut |
|
| 4315 | - $id_objet = intval($id_objet); |
|
| 4316 | - if (!($id_objet and $type_objet and $info)) { |
|
| 4317 | - return ''; |
|
| 4318 | - } |
|
| 4319 | - |
|
| 4320 | - // si on a deja note que l'objet n'existe pas, ne pas aller plus loin |
|
| 4321 | - if (isset($objets[$type_objet]) and $objets[$type_objet] === false) { |
|
| 4322 | - return ''; |
|
| 4323 | - } |
|
| 4324 | - |
|
| 4325 | - // Si on demande l'url, on retourne direct la fonction |
|
| 4326 | - if ($info == 'url') { |
|
| 4327 | - return generer_url_entite($id_objet, $type_objet); |
|
| 4328 | - } |
|
| 4329 | - |
|
| 4330 | - // Sinon on va tout chercher dans la table et on garde en memoire |
|
| 4331 | - $demande_titre = ($info == 'titre'); |
|
| 4332 | - |
|
| 4333 | - // On ne fait la requete que si on a pas deja l'objet ou si on demande le titre mais qu'on ne l'a pas encore |
|
| 4334 | - if (!isset($objets[$type_objet][$id_objet]) |
|
| 4335 | - or |
|
| 4336 | - ($demande_titre and !isset($objets[$type_objet][$id_objet]['titre'])) |
|
| 4337 | - ) { |
|
| 4338 | - if (!$trouver_table) { |
|
| 4339 | - $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 4340 | - } |
|
| 4341 | - $desc = $trouver_table(table_objet_sql($type_objet)); |
|
| 4342 | - if (!$desc) { |
|
| 4343 | - return $objets[$type_objet] = false; |
|
| 4344 | - } |
|
| 4345 | - |
|
| 4346 | - // Si on demande le titre, on le gere en interne |
|
| 4347 | - $champ_titre = ""; |
|
| 4348 | - if ($demande_titre) { |
|
| 4349 | - // si pas de titre declare mais champ titre, il sera peuple par le select * |
|
| 4350 | - $champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : ''; |
|
| 4351 | - } |
|
| 4352 | - include_spip('base/abstract_sql'); |
|
| 4353 | - include_spip('base/connect_sql'); |
|
| 4354 | - $objets[$type_objet][$id_objet] = sql_fetsel( |
|
| 4355 | - '*' . $champ_titre, |
|
| 4356 | - $desc['table_sql'], |
|
| 4357 | - id_table_objet($type_objet) . ' = ' . intval($id_objet) |
|
| 4358 | - ); |
|
| 4359 | - } |
|
| 4360 | - |
|
| 4361 | - // Si la fonction generer_TRUC_TYPE existe, on l'utilise pour formater $info_generee |
|
| 4362 | - if ($generer = charger_fonction("generer_${info}_${type_objet}", '', true)) { |
|
| 4363 | - $info_generee = $generer($id_objet, $objets[$type_objet][$id_objet]); |
|
| 4364 | - } // Si la fonction generer_TRUC_entite existe, on l'utilise pour formater $info_generee |
|
| 4365 | - else { |
|
| 4366 | - if ($generer = charger_fonction("generer_${info}_entite", '', true)) { |
|
| 4367 | - $info_generee = $generer($id_objet, $type_objet, $objets[$type_objet][$id_objet]); |
|
| 4368 | - } // Sinon on prend directement le champ SQL tel quel |
|
| 4369 | - else { |
|
| 4370 | - $info_generee = (isset($objets[$type_objet][$id_objet][$info]) ? $objets[$type_objet][$id_objet][$info] : ''); |
|
| 4371 | - } |
|
| 4372 | - } |
|
| 4373 | - |
|
| 4374 | - // On va ensuite appliquer les traitements automatiques si besoin |
|
| 4375 | - if (!$etoile) { |
|
| 4376 | - // FIXME: on fournit un ENV minimum avec id et type et connect='' |
|
| 4377 | - // mais ce fonctionnement est a ameliorer ! |
|
| 4378 | - $info_generee = appliquer_traitement_champ($info_generee, $info, table_objet($type_objet), |
|
| 4379 | - array('id_objet' => $id_objet, 'objet' => $type_objet, '')); |
|
| 4380 | - } |
|
| 4381 | - |
|
| 4382 | - return $info_generee; |
|
| 4311 | + static $trouver_table = null; |
|
| 4312 | + static $objets; |
|
| 4313 | + |
|
| 4314 | + // On verifie qu'on a tout ce qu'il faut |
|
| 4315 | + $id_objet = intval($id_objet); |
|
| 4316 | + if (!($id_objet and $type_objet and $info)) { |
|
| 4317 | + return ''; |
|
| 4318 | + } |
|
| 4319 | + |
|
| 4320 | + // si on a deja note que l'objet n'existe pas, ne pas aller plus loin |
|
| 4321 | + if (isset($objets[$type_objet]) and $objets[$type_objet] === false) { |
|
| 4322 | + return ''; |
|
| 4323 | + } |
|
| 4324 | + |
|
| 4325 | + // Si on demande l'url, on retourne direct la fonction |
|
| 4326 | + if ($info == 'url') { |
|
| 4327 | + return generer_url_entite($id_objet, $type_objet); |
|
| 4328 | + } |
|
| 4329 | + |
|
| 4330 | + // Sinon on va tout chercher dans la table et on garde en memoire |
|
| 4331 | + $demande_titre = ($info == 'titre'); |
|
| 4332 | + |
|
| 4333 | + // On ne fait la requete que si on a pas deja l'objet ou si on demande le titre mais qu'on ne l'a pas encore |
|
| 4334 | + if (!isset($objets[$type_objet][$id_objet]) |
|
| 4335 | + or |
|
| 4336 | + ($demande_titre and !isset($objets[$type_objet][$id_objet]['titre'])) |
|
| 4337 | + ) { |
|
| 4338 | + if (!$trouver_table) { |
|
| 4339 | + $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 4340 | + } |
|
| 4341 | + $desc = $trouver_table(table_objet_sql($type_objet)); |
|
| 4342 | + if (!$desc) { |
|
| 4343 | + return $objets[$type_objet] = false; |
|
| 4344 | + } |
|
| 4345 | + |
|
| 4346 | + // Si on demande le titre, on le gere en interne |
|
| 4347 | + $champ_titre = ""; |
|
| 4348 | + if ($demande_titre) { |
|
| 4349 | + // si pas de titre declare mais champ titre, il sera peuple par le select * |
|
| 4350 | + $champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : ''; |
|
| 4351 | + } |
|
| 4352 | + include_spip('base/abstract_sql'); |
|
| 4353 | + include_spip('base/connect_sql'); |
|
| 4354 | + $objets[$type_objet][$id_objet] = sql_fetsel( |
|
| 4355 | + '*' . $champ_titre, |
|
| 4356 | + $desc['table_sql'], |
|
| 4357 | + id_table_objet($type_objet) . ' = ' . intval($id_objet) |
|
| 4358 | + ); |
|
| 4359 | + } |
|
| 4360 | + |
|
| 4361 | + // Si la fonction generer_TRUC_TYPE existe, on l'utilise pour formater $info_generee |
|
| 4362 | + if ($generer = charger_fonction("generer_${info}_${type_objet}", '', true)) { |
|
| 4363 | + $info_generee = $generer($id_objet, $objets[$type_objet][$id_objet]); |
|
| 4364 | + } // Si la fonction generer_TRUC_entite existe, on l'utilise pour formater $info_generee |
|
| 4365 | + else { |
|
| 4366 | + if ($generer = charger_fonction("generer_${info}_entite", '', true)) { |
|
| 4367 | + $info_generee = $generer($id_objet, $type_objet, $objets[$type_objet][$id_objet]); |
|
| 4368 | + } // Sinon on prend directement le champ SQL tel quel |
|
| 4369 | + else { |
|
| 4370 | + $info_generee = (isset($objets[$type_objet][$id_objet][$info]) ? $objets[$type_objet][$id_objet][$info] : ''); |
|
| 4371 | + } |
|
| 4372 | + } |
|
| 4373 | + |
|
| 4374 | + // On va ensuite appliquer les traitements automatiques si besoin |
|
| 4375 | + if (!$etoile) { |
|
| 4376 | + // FIXME: on fournit un ENV minimum avec id et type et connect='' |
|
| 4377 | + // mais ce fonctionnement est a ameliorer ! |
|
| 4378 | + $info_generee = appliquer_traitement_champ($info_generee, $info, table_objet($type_objet), |
|
| 4379 | + array('id_objet' => $id_objet, 'objet' => $type_objet, '')); |
|
| 4380 | + } |
|
| 4381 | + |
|
| 4382 | + return $info_generee; |
|
| 4383 | 4383 | } |
| 4384 | 4384 | |
| 4385 | 4385 | /** |
@@ -4393,44 +4393,44 @@ discard block |
||
| 4393 | 4393 | * @return string |
| 4394 | 4394 | */ |
| 4395 | 4395 | function appliquer_traitement_champ($texte, $champ, $table_objet = '', $env = array(), $connect = '') { |
| 4396 | - if (!$champ) { |
|
| 4397 | - return $texte; |
|
| 4398 | - } |
|
| 4396 | + if (!$champ) { |
|
| 4397 | + return $texte; |
|
| 4398 | + } |
|
| 4399 | 4399 | |
| 4400 | - // On charge toujours les filtres de texte car la majorité des traitements les utilisent |
|
| 4401 | - // et il ne faut pas partir du principe que c'est déjà chargé (form ajax, etc) |
|
| 4402 | - include_spip('inc/texte'); |
|
| 4400 | + // On charge toujours les filtres de texte car la majorité des traitements les utilisent |
|
| 4401 | + // et il ne faut pas partir du principe que c'est déjà chargé (form ajax, etc) |
|
| 4402 | + include_spip('inc/texte'); |
|
| 4403 | 4403 | |
| 4404 | - $champ = strtoupper($champ); |
|
| 4405 | - $traitements = isset($GLOBALS['table_des_traitements'][$champ]) ? $GLOBALS['table_des_traitements'][$champ] : false; |
|
| 4406 | - if (!$traitements or !is_array($traitements)) { |
|
| 4407 | - return $texte; |
|
| 4408 | - } |
|
| 4404 | + $champ = strtoupper($champ); |
|
| 4405 | + $traitements = isset($GLOBALS['table_des_traitements'][$champ]) ? $GLOBALS['table_des_traitements'][$champ] : false; |
|
| 4406 | + if (!$traitements or !is_array($traitements)) { |
|
| 4407 | + return $texte; |
|
| 4408 | + } |
|
| 4409 | 4409 | |
| 4410 | - $traitement = ''; |
|
| 4411 | - if ($table_objet and (!isset($traitements[0]) or count($traitements) > 1)) { |
|
| 4412 | - // necessaire pour prendre en charge les vieux appels avec un table_objet_sql en 3e arg |
|
| 4413 | - $table_objet = table_objet($table_objet); |
|
| 4414 | - if (isset($traitements[$table_objet])) { |
|
| 4415 | - $traitement = $traitements[$table_objet]; |
|
| 4416 | - } |
|
| 4417 | - } |
|
| 4418 | - if (!$traitement and isset($traitements[0])) { |
|
| 4419 | - $traitement = $traitements[0]; |
|
| 4420 | - } |
|
| 4421 | - // (sinon prendre le premier de la liste par defaut ?) |
|
| 4410 | + $traitement = ''; |
|
| 4411 | + if ($table_objet and (!isset($traitements[0]) or count($traitements) > 1)) { |
|
| 4412 | + // necessaire pour prendre en charge les vieux appels avec un table_objet_sql en 3e arg |
|
| 4413 | + $table_objet = table_objet($table_objet); |
|
| 4414 | + if (isset($traitements[$table_objet])) { |
|
| 4415 | + $traitement = $traitements[$table_objet]; |
|
| 4416 | + } |
|
| 4417 | + } |
|
| 4418 | + if (!$traitement and isset($traitements[0])) { |
|
| 4419 | + $traitement = $traitements[0]; |
|
| 4420 | + } |
|
| 4421 | + // (sinon prendre le premier de la liste par defaut ?) |
|
| 4422 | 4422 | |
| 4423 | - if (!$traitement) { |
|
| 4424 | - return $texte; |
|
| 4425 | - } |
|
| 4423 | + if (!$traitement) { |
|
| 4424 | + return $texte; |
|
| 4425 | + } |
|
| 4426 | 4426 | |
| 4427 | - $traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement); |
|
| 4427 | + $traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement); |
|
| 4428 | 4428 | |
| 4429 | - // Fournir $connect et $Pile[0] au traitement si besoin |
|
| 4430 | - $Pile = array(0 => $env); |
|
| 4431 | - eval("\$texte = $traitement;"); |
|
| 4429 | + // Fournir $connect et $Pile[0] au traitement si besoin |
|
| 4430 | + $Pile = array(0 => $env); |
|
| 4431 | + eval("\$texte = $traitement;"); |
|
| 4432 | 4432 | |
| 4433 | - return $texte; |
|
| 4433 | + return $texte; |
|
| 4434 | 4434 | } |
| 4435 | 4435 | |
| 4436 | 4436 | |
@@ -4444,21 +4444,21 @@ discard block |
||
| 4444 | 4444 | * @return string |
| 4445 | 4445 | */ |
| 4446 | 4446 | function generer_lien_entite($id_objet, $objet, $longueur = 80, $connect = null) { |
| 4447 | - include_spip('inc/liens'); |
|
| 4448 | - $titre = traiter_raccourci_titre($id_objet, $objet, $connect); |
|
| 4449 | - // lorsque l'objet n'est plus declare (plugin desactive par exemple) |
|
| 4450 | - // le raccourcis n'est plus valide |
|
| 4451 | - $titre = isset($titre['titre']) ? typo($titre['titre']) : ''; |
|
| 4452 | - // on essaye avec generer_info_entite ? |
|
| 4453 | - if (!strlen($titre) and !$connect) { |
|
| 4454 | - $titre = generer_info_entite($id_objet, $objet, 'titre'); |
|
| 4455 | - } |
|
| 4456 | - if (!strlen($titre)) { |
|
| 4457 | - $titre = _T('info_sans_titre'); |
|
| 4458 | - } |
|
| 4459 | - $url = generer_url_entite($id_objet, $objet, '', '', $connect); |
|
| 4447 | + include_spip('inc/liens'); |
|
| 4448 | + $titre = traiter_raccourci_titre($id_objet, $objet, $connect); |
|
| 4449 | + // lorsque l'objet n'est plus declare (plugin desactive par exemple) |
|
| 4450 | + // le raccourcis n'est plus valide |
|
| 4451 | + $titre = isset($titre['titre']) ? typo($titre['titre']) : ''; |
|
| 4452 | + // on essaye avec generer_info_entite ? |
|
| 4453 | + if (!strlen($titre) and !$connect) { |
|
| 4454 | + $titre = generer_info_entite($id_objet, $objet, 'titre'); |
|
| 4455 | + } |
|
| 4456 | + if (!strlen($titre)) { |
|
| 4457 | + $titre = _T('info_sans_titre'); |
|
| 4458 | + } |
|
| 4459 | + $url = generer_url_entite($id_objet, $objet, '', '', $connect); |
|
| 4460 | 4460 | |
| 4461 | - return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . "</a>"; |
|
| 4461 | + return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . "</a>"; |
|
| 4462 | 4462 | } |
| 4463 | 4463 | |
| 4464 | 4464 | |
@@ -4475,15 +4475,15 @@ discard block |
||
| 4475 | 4475 | * @return string |
| 4476 | 4476 | */ |
| 4477 | 4477 | function wrap($texte, $wrap) { |
| 4478 | - $balises = extraire_balises($wrap); |
|
| 4479 | - if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) { |
|
| 4480 | - $texte = $wrap . $texte; |
|
| 4481 | - $regs = array_reverse($regs[1]); |
|
| 4482 | - $wrap = "</" . implode("></", $regs) . ">"; |
|
| 4483 | - $texte = $texte . $wrap; |
|
| 4484 | - } |
|
| 4478 | + $balises = extraire_balises($wrap); |
|
| 4479 | + if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) { |
|
| 4480 | + $texte = $wrap . $texte; |
|
| 4481 | + $regs = array_reverse($regs[1]); |
|
| 4482 | + $wrap = "</" . implode("></", $regs) . ">"; |
|
| 4483 | + $texte = $texte . $wrap; |
|
| 4484 | + } |
|
| 4485 | 4485 | |
| 4486 | - return $texte; |
|
| 4486 | + return $texte; |
|
| 4487 | 4487 | } |
| 4488 | 4488 | |
| 4489 | 4489 | |
@@ -4503,43 +4503,43 @@ discard block |
||
| 4503 | 4503 | * @return array|mixed|string |
| 4504 | 4504 | */ |
| 4505 | 4505 | function filtre_print_dist($u, $join = "<br />", $indent = 0) { |
| 4506 | - if (is_string($u)) { |
|
| 4507 | - $u = typo($u); |
|
| 4506 | + if (is_string($u)) { |
|
| 4507 | + $u = typo($u); |
|
| 4508 | 4508 | |
| 4509 | - return $u; |
|
| 4510 | - } |
|
| 4509 | + return $u; |
|
| 4510 | + } |
|
| 4511 | 4511 | |
| 4512 | - // caster $u en array si besoin |
|
| 4513 | - if (is_object($u)) { |
|
| 4514 | - $u = (array)$u; |
|
| 4515 | - } |
|
| 4512 | + // caster $u en array si besoin |
|
| 4513 | + if (is_object($u)) { |
|
| 4514 | + $u = (array)$u; |
|
| 4515 | + } |
|
| 4516 | 4516 | |
| 4517 | - if (is_array($u)) { |
|
| 4518 | - $out = ""; |
|
| 4519 | - // toutes les cles sont numeriques ? |
|
| 4520 | - // et aucun enfant n'est un tableau |
|
| 4521 | - // liste simple separee par des virgules |
|
| 4522 | - $numeric_keys = array_map('is_numeric', array_keys($u)); |
|
| 4523 | - $array_values = array_map('is_array', $u); |
|
| 4524 | - $object_values = array_map('is_object', $u); |
|
| 4525 | - if (array_sum($numeric_keys) == count($numeric_keys) |
|
| 4526 | - and !array_sum($array_values) |
|
| 4527 | - and !array_sum($object_values) |
|
| 4528 | - ) { |
|
| 4529 | - return join(", ", array_map('filtre_print_dist', $u)); |
|
| 4530 | - } |
|
| 4517 | + if (is_array($u)) { |
|
| 4518 | + $out = ""; |
|
| 4519 | + // toutes les cles sont numeriques ? |
|
| 4520 | + // et aucun enfant n'est un tableau |
|
| 4521 | + // liste simple separee par des virgules |
|
| 4522 | + $numeric_keys = array_map('is_numeric', array_keys($u)); |
|
| 4523 | + $array_values = array_map('is_array', $u); |
|
| 4524 | + $object_values = array_map('is_object', $u); |
|
| 4525 | + if (array_sum($numeric_keys) == count($numeric_keys) |
|
| 4526 | + and !array_sum($array_values) |
|
| 4527 | + and !array_sum($object_values) |
|
| 4528 | + ) { |
|
| 4529 | + return join(", ", array_map('filtre_print_dist', $u)); |
|
| 4530 | + } |
|
| 4531 | 4531 | |
| 4532 | - // sinon on passe a la ligne et on indente |
|
| 4533 | - $i_str = str_pad("", $indent, " "); |
|
| 4534 | - foreach ($u as $k => $v) { |
|
| 4535 | - $out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2); |
|
| 4536 | - } |
|
| 4532 | + // sinon on passe a la ligne et on indente |
|
| 4533 | + $i_str = str_pad("", $indent, " "); |
|
| 4534 | + foreach ($u as $k => $v) { |
|
| 4535 | + $out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2); |
|
| 4536 | + } |
|
| 4537 | 4537 | |
| 4538 | - return $out; |
|
| 4539 | - } |
|
| 4538 | + return $out; |
|
| 4539 | + } |
|
| 4540 | 4540 | |
| 4541 | - // on sait pas quoi faire... |
|
| 4542 | - return $u; |
|
| 4541 | + // on sait pas quoi faire... |
|
| 4542 | + return $u; |
|
| 4543 | 4543 | } |
| 4544 | 4544 | |
| 4545 | 4545 | |
@@ -4552,10 +4552,10 @@ discard block |
||
| 4552 | 4552 | * @return string |
| 4553 | 4553 | */ |
| 4554 | 4554 | function objet_info($objet, $info) { |
| 4555 | - $table = table_objet_sql($objet); |
|
| 4556 | - $infos = lister_tables_objets_sql($table); |
|
| 4555 | + $table = table_objet_sql($objet); |
|
| 4556 | + $infos = lister_tables_objets_sql($table); |
|
| 4557 | 4557 | |
| 4558 | - return (isset($infos[$info]) ? $infos[$info] : ''); |
|
| 4558 | + return (isset($infos[$info]) ? $infos[$info] : ''); |
|
| 4559 | 4559 | } |
| 4560 | 4560 | |
| 4561 | 4561 | /** |
@@ -4570,11 +4570,11 @@ discard block |
||
| 4570 | 4570 | * Texte traduit du comptage, tel que '3 articles' |
| 4571 | 4571 | */ |
| 4572 | 4572 | function objet_afficher_nb($nb, $objet) { |
| 4573 | - if (!$nb) { |
|
| 4574 | - return _T(objet_info($objet, 'info_aucun_objet')); |
|
| 4575 | - } else { |
|
| 4576 | - return _T(objet_info($objet, $nb == 1 ? 'info_1_objet' : 'info_nb_objets'), array('nb' => $nb)); |
|
| 4577 | - } |
|
| 4573 | + if (!$nb) { |
|
| 4574 | + return _T(objet_info($objet, 'info_aucun_objet')); |
|
| 4575 | + } else { |
|
| 4576 | + return _T(objet_info($objet, $nb == 1 ? 'info_1_objet' : 'info_nb_objets'), array('nb' => $nb)); |
|
| 4577 | + } |
|
| 4578 | 4578 | } |
| 4579 | 4579 | |
| 4580 | 4580 | /** |
@@ -4586,11 +4586,11 @@ discard block |
||
| 4586 | 4586 | * @return string |
| 4587 | 4587 | */ |
| 4588 | 4588 | function objet_icone($objet, $taille = 24, $class='') { |
| 4589 | - $icone = objet_info($objet, 'icone_objet') . "-" . $taille . ".png"; |
|
| 4590 | - $icone = chemin_image($icone); |
|
| 4591 | - $balise_img = charger_filtre('balise_img'); |
|
| 4589 | + $icone = objet_info($objet, 'icone_objet') . "-" . $taille . ".png"; |
|
| 4590 | + $icone = chemin_image($icone); |
|
| 4591 | + $balise_img = charger_filtre('balise_img'); |
|
| 4592 | 4592 | |
| 4593 | - return $icone ? $balise_img($icone, _T(objet_info($objet, 'texte_objet')), $class, $taille) : ''; |
|
| 4593 | + return $icone ? $balise_img($icone, _T(objet_info($objet, 'texte_objet')), $class, $taille) : ''; |
|
| 4594 | 4594 | } |
| 4595 | 4595 | |
| 4596 | 4596 | /** |
@@ -4611,12 +4611,12 @@ discard block |
||
| 4611 | 4611 | * @return string |
| 4612 | 4612 | */ |
| 4613 | 4613 | function objet_T($objet, $chaine, $args = array(), $options = array()){ |
| 4614 | - $chaine = explode(':',$chaine); |
|
| 4615 | - if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, array('force'=>false)))) { |
|
| 4616 | - return $t; |
|
| 4617 | - } |
|
| 4618 | - $chaine = implode(':',$chaine); |
|
| 4619 | - return _T($chaine, $args, $options); |
|
| 4614 | + $chaine = explode(':',$chaine); |
|
| 4615 | + if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, array('force'=>false)))) { |
|
| 4616 | + return $t; |
|
| 4617 | + } |
|
| 4618 | + $chaine = implode(':',$chaine); |
|
| 4619 | + return _T($chaine, $args, $options); |
|
| 4620 | 4620 | } |
| 4621 | 4621 | |
| 4622 | 4622 | /** |
@@ -4630,17 +4630,17 @@ discard block |
||
| 4630 | 4630 | * @return string Code HTML |
| 4631 | 4631 | */ |
| 4632 | 4632 | function insert_head_css_conditionnel($flux) { |
| 4633 | - if (strpos($flux, '<!-- insert_head_css -->') === false |
|
| 4634 | - and $p = strpos($flux, '<!-- insert_head -->') |
|
| 4635 | - ) { |
|
| 4636 | - // plutot avant le premier js externe (jquery) pour etre non bloquant |
|
| 4637 | - if ($p1 = stripos($flux, '<script src=') and $p1 < $p) { |
|
| 4638 | - $p = $p1; |
|
| 4639 | - } |
|
| 4640 | - $flux = substr_replace($flux, pipeline('insert_head_css', '<!-- insert_head_css -->'), $p, 0); |
|
| 4641 | - } |
|
| 4633 | + if (strpos($flux, '<!-- insert_head_css -->') === false |
|
| 4634 | + and $p = strpos($flux, '<!-- insert_head -->') |
|
| 4635 | + ) { |
|
| 4636 | + // plutot avant le premier js externe (jquery) pour etre non bloquant |
|
| 4637 | + if ($p1 = stripos($flux, '<script src=') and $p1 < $p) { |
|
| 4638 | + $p = $p1; |
|
| 4639 | + } |
|
| 4640 | + $flux = substr_replace($flux, pipeline('insert_head_css', '<!-- insert_head_css -->'), $p, 0); |
|
| 4641 | + } |
|
| 4642 | 4642 | |
| 4643 | - return $flux; |
|
| 4643 | + return $flux; |
|
| 4644 | 4644 | } |
| 4645 | 4645 | |
| 4646 | 4646 | /** |
@@ -4661,66 +4661,66 @@ discard block |
||
| 4661 | 4661 | * @return string |
| 4662 | 4662 | */ |
| 4663 | 4663 | function produire_fond_statique($fond, $contexte = array(), $options = array(), $connect = '') { |
| 4664 | - if (isset($contexte['format'])) { |
|
| 4665 | - $extension = $contexte['format']; |
|
| 4666 | - unset($contexte['format']); |
|
| 4667 | - } else { |
|
| 4668 | - $extension = "html"; |
|
| 4669 | - if (preg_match(',[.](css|js|json)$,', $fond, $m)) { |
|
| 4670 | - $extension = $m[1]; |
|
| 4671 | - } |
|
| 4672 | - } |
|
| 4673 | - // recuperer le contenu produit par le squelette |
|
| 4674 | - $options['raw'] = true; |
|
| 4675 | - $cache = recuperer_fond($fond, $contexte, $options, $connect); |
|
| 4676 | - |
|
| 4677 | - // calculer le nom de la css |
|
| 4678 | - $dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension); |
|
| 4679 | - $nom_safe = preg_replace(",\W,", '_', str_replace('.', '_', $fond)); |
|
| 4680 | - $contexte_implicite = calculer_contexte_implicite(); |
|
| 4681 | - $filename = $dir_var . $extension . "dyn-$nom_safe-" |
|
| 4682 | - . substr(md5($fond . serialize($contexte_implicite) . serialize($contexte) . $connect), 0, 8) |
|
| 4683 | - . ".$extension"; |
|
| 4684 | - |
|
| 4685 | - // mettre a jour le fichier si il n'existe pas |
|
| 4686 | - // ou trop ancien |
|
| 4687 | - // le dernier fichier produit est toujours suffixe par .last |
|
| 4688 | - // et recopie sur le fichier cible uniquement si il change |
|
| 4689 | - if (!file_exists($filename) |
|
| 4690 | - or !file_exists($filename . ".last") |
|
| 4691 | - or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . ".last") < $cache['lastmodified']) |
|
| 4692 | - or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul') |
|
| 4693 | - ) { |
|
| 4694 | - $contenu = $cache['texte']; |
|
| 4695 | - // passer les urls en absolu si c'est une css |
|
| 4696 | - if ($extension == "css") { |
|
| 4697 | - $contenu = urls_absolues_css($contenu, |
|
| 4698 | - test_espace_prive() ? generer_url_ecrire('accueil') : generer_url_public($fond)); |
|
| 4699 | - } |
|
| 4700 | - |
|
| 4701 | - $comment = ''; |
|
| 4702 | - // ne pas insérer de commentaire si c'est du json |
|
| 4703 | - if ($extension != "json") { |
|
| 4704 | - $comment = "/* #PRODUIRE{fond=$fond"; |
|
| 4705 | - foreach ($contexte as $k => $v) { |
|
| 4706 | - $comment .= ",$k=$v"; |
|
| 4707 | - } |
|
| 4708 | - // pas de date dans le commentaire car sinon ca invalide le md5 et force la maj |
|
| 4709 | - // mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non |
|
| 4710 | - $comment .= "}\n md5:" . md5($contenu) . " */\n"; |
|
| 4711 | - } |
|
| 4712 | - // et ecrire le fichier |
|
| 4713 | - ecrire_fichier($filename . ".last", $comment . $contenu); |
|
| 4714 | - // regarder si on recopie |
|
| 4715 | - if (!file_exists($filename) |
|
| 4716 | - or md5_file($filename) !== md5_file($filename . ".last") |
|
| 4717 | - ) { |
|
| 4718 | - @copy($filename . ".last", $filename); |
|
| 4719 | - clearstatcache(true, $filename); // eviter que PHP ne reserve le vieux timestamp |
|
| 4720 | - } |
|
| 4721 | - } |
|
| 4722 | - |
|
| 4723 | - return timestamp($filename); |
|
| 4664 | + if (isset($contexte['format'])) { |
|
| 4665 | + $extension = $contexte['format']; |
|
| 4666 | + unset($contexte['format']); |
|
| 4667 | + } else { |
|
| 4668 | + $extension = "html"; |
|
| 4669 | + if (preg_match(',[.](css|js|json)$,', $fond, $m)) { |
|
| 4670 | + $extension = $m[1]; |
|
| 4671 | + } |
|
| 4672 | + } |
|
| 4673 | + // recuperer le contenu produit par le squelette |
|
| 4674 | + $options['raw'] = true; |
|
| 4675 | + $cache = recuperer_fond($fond, $contexte, $options, $connect); |
|
| 4676 | + |
|
| 4677 | + // calculer le nom de la css |
|
| 4678 | + $dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension); |
|
| 4679 | + $nom_safe = preg_replace(",\W,", '_', str_replace('.', '_', $fond)); |
|
| 4680 | + $contexte_implicite = calculer_contexte_implicite(); |
|
| 4681 | + $filename = $dir_var . $extension . "dyn-$nom_safe-" |
|
| 4682 | + . substr(md5($fond . serialize($contexte_implicite) . serialize($contexte) . $connect), 0, 8) |
|
| 4683 | + . ".$extension"; |
|
| 4684 | + |
|
| 4685 | + // mettre a jour le fichier si il n'existe pas |
|
| 4686 | + // ou trop ancien |
|
| 4687 | + // le dernier fichier produit est toujours suffixe par .last |
|
| 4688 | + // et recopie sur le fichier cible uniquement si il change |
|
| 4689 | + if (!file_exists($filename) |
|
| 4690 | + or !file_exists($filename . ".last") |
|
| 4691 | + or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . ".last") < $cache['lastmodified']) |
|
| 4692 | + or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul') |
|
| 4693 | + ) { |
|
| 4694 | + $contenu = $cache['texte']; |
|
| 4695 | + // passer les urls en absolu si c'est une css |
|
| 4696 | + if ($extension == "css") { |
|
| 4697 | + $contenu = urls_absolues_css($contenu, |
|
| 4698 | + test_espace_prive() ? generer_url_ecrire('accueil') : generer_url_public($fond)); |
|
| 4699 | + } |
|
| 4700 | + |
|
| 4701 | + $comment = ''; |
|
| 4702 | + // ne pas insérer de commentaire si c'est du json |
|
| 4703 | + if ($extension != "json") { |
|
| 4704 | + $comment = "/* #PRODUIRE{fond=$fond"; |
|
| 4705 | + foreach ($contexte as $k => $v) { |
|
| 4706 | + $comment .= ",$k=$v"; |
|
| 4707 | + } |
|
| 4708 | + // pas de date dans le commentaire car sinon ca invalide le md5 et force la maj |
|
| 4709 | + // mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non |
|
| 4710 | + $comment .= "}\n md5:" . md5($contenu) . " */\n"; |
|
| 4711 | + } |
|
| 4712 | + // et ecrire le fichier |
|
| 4713 | + ecrire_fichier($filename . ".last", $comment . $contenu); |
|
| 4714 | + // regarder si on recopie |
|
| 4715 | + if (!file_exists($filename) |
|
| 4716 | + or md5_file($filename) !== md5_file($filename . ".last") |
|
| 4717 | + ) { |
|
| 4718 | + @copy($filename . ".last", $filename); |
|
| 4719 | + clearstatcache(true, $filename); // eviter que PHP ne reserve le vieux timestamp |
|
| 4720 | + } |
|
| 4721 | + } |
|
| 4722 | + |
|
| 4723 | + return timestamp($filename); |
|
| 4724 | 4724 | } |
| 4725 | 4725 | |
| 4726 | 4726 | /** |
@@ -4733,14 +4733,14 @@ discard block |
||
| 4733 | 4733 | * $fichier auquel on a ajouté le timestamp |
| 4734 | 4734 | */ |
| 4735 | 4735 | function timestamp($fichier) { |
| 4736 | - if (!$fichier |
|
| 4737 | - or !file_exists($fichier) |
|
| 4738 | - or !$m = filemtime($fichier) |
|
| 4739 | - ) { |
|
| 4740 | - return $fichier; |
|
| 4741 | - } |
|
| 4736 | + if (!$fichier |
|
| 4737 | + or !file_exists($fichier) |
|
| 4738 | + or !$m = filemtime($fichier) |
|
| 4739 | + ) { |
|
| 4740 | + return $fichier; |
|
| 4741 | + } |
|
| 4742 | 4742 | |
| 4743 | - return "$fichier?$m"; |
|
| 4743 | + return "$fichier?$m"; |
|
| 4744 | 4744 | } |
| 4745 | 4745 | |
| 4746 | 4746 | /** |
@@ -4750,11 +4750,11 @@ discard block |
||
| 4750 | 4750 | * @return string |
| 4751 | 4751 | */ |
| 4752 | 4752 | function supprimer_timestamp($url) { |
| 4753 | - if (strpos($url, "?") === false) { |
|
| 4754 | - return $url; |
|
| 4755 | - } |
|
| 4753 | + if (strpos($url, "?") === false) { |
|
| 4754 | + return $url; |
|
| 4755 | + } |
|
| 4756 | 4756 | |
| 4757 | - return preg_replace(",\?[[:digit:]]+$,", "", $url); |
|
| 4757 | + return preg_replace(",\?[[:digit:]]+$,", "", $url); |
|
| 4758 | 4758 | } |
| 4759 | 4759 | |
| 4760 | 4760 | /** |
@@ -4769,9 +4769,9 @@ discard block |
||
| 4769 | 4769 | * @return string |
| 4770 | 4770 | */ |
| 4771 | 4771 | function filtre_nettoyer_titre_email_dist($titre) { |
| 4772 | - include_spip('inc/envoyer_mail'); |
|
| 4772 | + include_spip('inc/envoyer_mail'); |
|
| 4773 | 4773 | |
| 4774 | - return nettoyer_titre_email($titre); |
|
| 4774 | + return nettoyer_titre_email($titre); |
|
| 4775 | 4775 | } |
| 4776 | 4776 | |
| 4777 | 4777 | /** |
@@ -4793,19 +4793,19 @@ discard block |
||
| 4793 | 4793 | * @return string |
| 4794 | 4794 | */ |
| 4795 | 4795 | function filtre_chercher_rubrique_dist( |
| 4796 | - $titre, |
|
| 4797 | - $id_objet, |
|
| 4798 | - $id_parent, |
|
| 4799 | - $objet, |
|
| 4800 | - $id_secteur, |
|
| 4801 | - $restreint, |
|
| 4802 | - $actionable = false, |
|
| 4803 | - $retour_sans_cadre = false |
|
| 4796 | + $titre, |
|
| 4797 | + $id_objet, |
|
| 4798 | + $id_parent, |
|
| 4799 | + $objet, |
|
| 4800 | + $id_secteur, |
|
| 4801 | + $restreint, |
|
| 4802 | + $actionable = false, |
|
| 4803 | + $retour_sans_cadre = false |
|
| 4804 | 4804 | ) { |
| 4805 | - include_spip('inc/filtres_ecrire'); |
|
| 4805 | + include_spip('inc/filtres_ecrire'); |
|
| 4806 | 4806 | |
| 4807 | - return chercher_rubrique($titre, $id_objet, $id_parent, $objet, $id_secteur, $restreint, $actionable, |
|
| 4808 | - $retour_sans_cadre); |
|
| 4807 | + return chercher_rubrique($titre, $id_objet, $id_parent, $objet, $id_secteur, $restreint, $actionable, |
|
| 4808 | + $retour_sans_cadre); |
|
| 4809 | 4809 | } |
| 4810 | 4810 | |
| 4811 | 4811 | /** |
@@ -4834,56 +4834,56 @@ discard block |
||
| 4834 | 4834 | * Chaîne vide si l'accès est autorisé |
| 4835 | 4835 | */ |
| 4836 | 4836 | function sinon_interdire_acces($ok = false, $url = '', $statut = 0, $message = null) { |
| 4837 | - if ($ok) { |
|
| 4838 | - return ''; |
|
| 4839 | - } |
|
| 4840 | - |
|
| 4841 | - // Vider tous les tampons |
|
| 4842 | - $level = @ob_get_level(); |
|
| 4843 | - while ($level--) { |
|
| 4844 | - @ob_end_clean(); |
|
| 4845 | - } |
|
| 4846 | - |
|
| 4847 | - include_spip('inc/headers'); |
|
| 4848 | - |
|
| 4849 | - // S'il y a une URL, on redirige (si pas de statut, la fonction mettra 302 par défaut) |
|
| 4850 | - if ($url) { |
|
| 4851 | - redirige_par_entete($url, '', $statut); |
|
| 4852 | - } |
|
| 4853 | - |
|
| 4854 | - // ecriture simplifiee avec message en 3eme argument (= statut 403) |
|
| 4855 | - if (!is_numeric($statut) and is_null($message)) { |
|
| 4856 | - $message = $statut; |
|
| 4857 | - $statut = 0; |
|
| 4858 | - } |
|
| 4859 | - if (!$message) { |
|
| 4860 | - $message = ''; |
|
| 4861 | - } |
|
| 4862 | - $statut = intval($statut); |
|
| 4863 | - |
|
| 4864 | - // Si on est dans l'espace privé, on génère du 403 Forbidden par defaut ou du 404 |
|
| 4865 | - if (test_espace_prive()) { |
|
| 4866 | - if (!$statut or !in_array($statut, array(404, 403))) { |
|
| 4867 | - $statut = 403; |
|
| 4868 | - } |
|
| 4869 | - http_status(403); |
|
| 4870 | - $echec = charger_fonction('403', 'exec'); |
|
| 4871 | - $echec($message); |
|
| 4872 | - } else { |
|
| 4873 | - // Sinon dans l'espace public on redirige vers une 404 par défaut, car elle toujours présente normalement |
|
| 4874 | - if (!$statut) { |
|
| 4875 | - $statut = 404; |
|
| 4876 | - } |
|
| 4877 | - // Dans tous les cas on modifie l'entité avec ce qui est demandé |
|
| 4878 | - http_status($statut); |
|
| 4879 | - // Si le statut est une erreur et qu'il n'y a pas de redirection on va chercher le squelette du même nom |
|
| 4880 | - if ($statut >= 400) { |
|
| 4881 | - echo recuperer_fond("$statut", array('erreur' => $message)); |
|
| 4882 | - } |
|
| 4883 | - } |
|
| 4884 | - |
|
| 4885 | - |
|
| 4886 | - exit; |
|
| 4837 | + if ($ok) { |
|
| 4838 | + return ''; |
|
| 4839 | + } |
|
| 4840 | + |
|
| 4841 | + // Vider tous les tampons |
|
| 4842 | + $level = @ob_get_level(); |
|
| 4843 | + while ($level--) { |
|
| 4844 | + @ob_end_clean(); |
|
| 4845 | + } |
|
| 4846 | + |
|
| 4847 | + include_spip('inc/headers'); |
|
| 4848 | + |
|
| 4849 | + // S'il y a une URL, on redirige (si pas de statut, la fonction mettra 302 par défaut) |
|
| 4850 | + if ($url) { |
|
| 4851 | + redirige_par_entete($url, '', $statut); |
|
| 4852 | + } |
|
| 4853 | + |
|
| 4854 | + // ecriture simplifiee avec message en 3eme argument (= statut 403) |
|
| 4855 | + if (!is_numeric($statut) and is_null($message)) { |
|
| 4856 | + $message = $statut; |
|
| 4857 | + $statut = 0; |
|
| 4858 | + } |
|
| 4859 | + if (!$message) { |
|
| 4860 | + $message = ''; |
|
| 4861 | + } |
|
| 4862 | + $statut = intval($statut); |
|
| 4863 | + |
|
| 4864 | + // Si on est dans l'espace privé, on génère du 403 Forbidden par defaut ou du 404 |
|
| 4865 | + if (test_espace_prive()) { |
|
| 4866 | + if (!$statut or !in_array($statut, array(404, 403))) { |
|
| 4867 | + $statut = 403; |
|
| 4868 | + } |
|
| 4869 | + http_status(403); |
|
| 4870 | + $echec = charger_fonction('403', 'exec'); |
|
| 4871 | + $echec($message); |
|
| 4872 | + } else { |
|
| 4873 | + // Sinon dans l'espace public on redirige vers une 404 par défaut, car elle toujours présente normalement |
|
| 4874 | + if (!$statut) { |
|
| 4875 | + $statut = 404; |
|
| 4876 | + } |
|
| 4877 | + // Dans tous les cas on modifie l'entité avec ce qui est demandé |
|
| 4878 | + http_status($statut); |
|
| 4879 | + // Si le statut est une erreur et qu'il n'y a pas de redirection on va chercher le squelette du même nom |
|
| 4880 | + if ($statut >= 400) { |
|
| 4881 | + echo recuperer_fond("$statut", array('erreur' => $message)); |
|
| 4882 | + } |
|
| 4883 | + } |
|
| 4884 | + |
|
| 4885 | + |
|
| 4886 | + exit; |
|
| 4887 | 4887 | } |
| 4888 | 4888 | |
| 4889 | 4889 | /** |
@@ -4894,9 +4894,9 @@ discard block |
||
| 4894 | 4894 | * @return string |
| 4895 | 4895 | */ |
| 4896 | 4896 | function filtre_compacte_dist($source, $format = null) { |
| 4897 | - if (function_exists('compacte')) { |
|
| 4898 | - return compacte($source, $format); |
|
| 4899 | - } |
|
| 4897 | + if (function_exists('compacte')) { |
|
| 4898 | + return compacte($source, $format); |
|
| 4899 | + } |
|
| 4900 | 4900 | |
| 4901 | - return $source; |
|
| 4901 | + return $source; |
|
| 4902 | 4902 | } |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | |
| 93 | 93 | return $f; |
| 94 | 94 | } |
| 95 | - foreach (array('filtre_' . $fonc, 'filtre_' . $fonc . '_dist', $fonc) as $f) { |
|
| 95 | + foreach (array('filtre_'.$fonc, 'filtre_'.$fonc.'_dist', $fonc) as $f) { |
|
| 96 | 96 | trouver_filtre_matrice($f); // charge des fichiers spécifiques éventuels |
| 97 | 97 | // fonction ou name\space\fonction |
| 98 | 98 | if (is_callable($f)) { |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | function spip_version() { |
| 160 | 160 | $version = $GLOBALS['spip_version_affichee']; |
| 161 | 161 | if ($svn_revision = version_svn_courante(_DIR_RACINE)) { |
| 162 | - $version .= ($svn_revision < 0 ? ' SVN' : '') . ' [' . abs($svn_revision) . ']'; |
|
| 162 | + $version .= ($svn_revision < 0 ? ' SVN' : '').' ['.abs($svn_revision).']'; |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | return $version; |
@@ -186,15 +186,15 @@ discard block |
||
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | // version installee par paquet ZIP |
| 189 | - if (lire_fichier($dir . '/svn.revision', $c) |
|
| 189 | + if (lire_fichier($dir.'/svn.revision', $c) |
|
| 190 | 190 | and preg_match(',Revision: (\d+),', $c, $d) |
| 191 | 191 | ) { |
| 192 | 192 | return intval($d[1]); |
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | // version installee par SVN |
| 196 | - if (file_exists($dir . '/.svn/wc.db') && class_exists('SQLite3')) { |
|
| 197 | - $db = new SQLite3($dir . '/.svn/wc.db'); |
|
| 196 | + if (file_exists($dir.'/.svn/wc.db') && class_exists('SQLite3')) { |
|
| 197 | + $db = new SQLite3($dir.'/.svn/wc.db'); |
|
| 198 | 198 | $result = $db->query('SELECT changed_revision FROM nodes WHERE local_relpath = "" LIMIT 1'); |
| 199 | 199 | if ($result) { |
| 200 | 200 | $row = $result->fetchArray(); |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | return -$row['changed_revision']; |
| 203 | 203 | } |
| 204 | 204 | } |
| 205 | - } else if (lire_fichier($dir . '/.svn/entries', $c) |
|
| 205 | + } else if (lire_fichier($dir.'/.svn/entries', $c) |
|
| 206 | 206 | and ( |
| 207 | 207 | (preg_match_all( |
| 208 | 208 | ',committed-rev="([0-9]+)",', $c, $r1, PREG_PATTERN_ORDER) |
@@ -222,11 +222,11 @@ discard block |
||
| 222 | 222 | |
| 223 | 223 | // La matrice est necessaire pour ne filtrer _que_ des fonctions definies dans filtres_images |
| 224 | 224 | // et laisser passer les fonctions personnelles baptisees image_... |
| 225 | -$GLOBALS['spip_matrice']['image_graver'] = true;//'inc/filtres_images_mini.php'; |
|
| 226 | -$GLOBALS['spip_matrice']['image_select'] = true;//'inc/filtres_images_mini.php'; |
|
| 227 | -$GLOBALS['spip_matrice']['image_reduire'] = true;//'inc/filtres_images_mini.php'; |
|
| 228 | -$GLOBALS['spip_matrice']['image_reduire_par'] = true;//'inc/filtres_images_mini.php'; |
|
| 229 | -$GLOBALS['spip_matrice']['image_passe_partout'] = true;//'inc/filtres_images_mini.php'; |
|
| 225 | +$GLOBALS['spip_matrice']['image_graver'] = true; //'inc/filtres_images_mini.php'; |
|
| 226 | +$GLOBALS['spip_matrice']['image_select'] = true; //'inc/filtres_images_mini.php'; |
|
| 227 | +$GLOBALS['spip_matrice']['image_reduire'] = true; //'inc/filtres_images_mini.php'; |
|
| 228 | +$GLOBALS['spip_matrice']['image_reduire_par'] = true; //'inc/filtres_images_mini.php'; |
|
| 229 | +$GLOBALS['spip_matrice']['image_passe_partout'] = true; //'inc/filtres_images_mini.php'; |
|
| 230 | 230 | |
| 231 | 231 | $GLOBALS['spip_matrice']['couleur_html_to_hex'] = 'inc/filtres_images_mini.php'; |
| 232 | 232 | $GLOBALS['spip_matrice']['couleur_foncer'] = 'inc/filtres_images_mini.php'; |
@@ -372,8 +372,8 @@ discard block |
||
| 372 | 372 | */ |
| 373 | 373 | function filtre_debug($val, $key = null) { |
| 374 | 374 | $debug = ( |
| 375 | - is_null($key) ? '' : (var_export($key, true) . " = ") |
|
| 376 | - ) . var_export($val, true); |
|
| 375 | + is_null($key) ? '' : (var_export($key, true)." = ") |
|
| 376 | + ).var_export($val, true); |
|
| 377 | 377 | |
| 378 | 378 | include_spip('inc/autoriser'); |
| 379 | 379 | if (autoriser('webmestre')) { |
@@ -461,7 +461,7 @@ discard block |
||
| 461 | 461 | if (preg_match(",this[.]src=['\"]([^'\"]+)['\"],ims", $mouseover, $match)) { |
| 462 | 462 | $srcover = $match[1]; |
| 463 | 463 | array_shift($args); |
| 464 | - array_unshift($args, "<img src='" . $match[1] . "' />"); |
|
| 464 | + array_unshift($args, "<img src='".$match[1]."' />"); |
|
| 465 | 465 | $srcover_filter = call_user_func_array($filtre, $args); |
| 466 | 466 | $srcover_filter = extraire_attribut($srcover_filter, 'src'); |
| 467 | 467 | $reduit = str_replace($srcover, $srcover_filter, $reduit); |
@@ -811,7 +811,7 @@ discard block |
||
| 811 | 811 | // " -> " et tout ce genre de choses |
| 812 | 812 | $u = $GLOBALS['meta']['pcre_u']; |
| 813 | 813 | $texte = str_replace(" ", " ", $texte); |
| 814 | - $texte = preg_replace('/\s{2,}/S' . $u, " ", $texte); |
|
| 814 | + $texte = preg_replace('/\s{2,}/S'.$u, " ", $texte); |
|
| 815 | 815 | // ne pas echapper les sinqle quotes car certains outils de syndication gerent mal |
| 816 | 816 | $texte = entites_html($texte, false, false); |
| 817 | 817 | // mais bien echapper les double quotes ! |
@@ -871,7 +871,7 @@ discard block |
||
| 871 | 871 | **/ |
| 872 | 872 | function supprimer_numero($texte) { |
| 873 | 873 | return preg_replace( |
| 874 | - ",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S", |
|
| 874 | + ",^[[:space:]]*([0-9]+)([.)]|".chr(194).'?'.chr(176).")[[:space:]]+,S", |
|
| 875 | 875 | "", $texte); |
| 876 | 876 | } |
| 877 | 877 | |
@@ -896,7 +896,7 @@ discard block |
||
| 896 | 896 | **/ |
| 897 | 897 | function recuperer_numero($texte) { |
| 898 | 898 | if (preg_match( |
| 899 | - ",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S", |
|
| 899 | + ",^[[:space:]]*([0-9]+)([.)]|".chr(194).'?'.chr(176).")[[:space:]]+,S", |
|
| 900 | 900 | $texte, $regs)) { |
| 901 | 901 | return strval($regs[1]); |
| 902 | 902 | } else { |
@@ -981,8 +981,8 @@ discard block |
||
| 981 | 981 | **/ |
| 982 | 982 | function textebrut($texte) { |
| 983 | 983 | $u = $GLOBALS['meta']['pcre_u']; |
| 984 | - $texte = preg_replace('/\s+/S' . $u, " ", $texte); |
|
| 985 | - $texte = preg_replace("/<(p|br)( [^>]*)?" . ">/iS", "\n\n", $texte); |
|
| 984 | + $texte = preg_replace('/\s+/S'.$u, " ", $texte); |
|
| 985 | + $texte = preg_replace("/<(p|br)( [^>]*)?".">/iS", "\n\n", $texte); |
|
| 986 | 986 | $texte = preg_replace("/^\n+/", "", $texte); |
| 987 | 987 | $texte = preg_replace("/\n+$/", "", $texte); |
| 988 | 988 | $texte = preg_replace("/\n +/", "\n", $texte); |
@@ -1010,7 +1010,7 @@ discard block |
||
| 1010 | 1010 | if (preg_match_all(",(<a\s+[^>]*https?://[^>]*class=[\"']spip_(out|url)\b[^>]+>),imsS", |
| 1011 | 1011 | $texte, $liens, PREG_PATTERN_ORDER)) { |
| 1012 | 1012 | foreach ($liens[0] as $a) { |
| 1013 | - $rel = 'noopener noreferrer ' . extraire_attribut($a, 'rel'); |
|
| 1013 | + $rel = 'noopener noreferrer '.extraire_attribut($a, 'rel'); |
|
| 1014 | 1014 | $ablank = inserer_attribut($a, 'rel', $rel); |
| 1015 | 1015 | $ablank = inserer_attribut($ablank, 'target', '_blank'); |
| 1016 | 1016 | $texte = str_replace($a, $ablank, $texte); |
@@ -1035,7 +1035,7 @@ discard block |
||
| 1035 | 1035 | foreach ($regs[0] as $a) { |
| 1036 | 1036 | $rel = extraire_attribut($a, "rel"); |
| 1037 | 1037 | if (strpos($rel, "nofollow") === false) { |
| 1038 | - $rel = "nofollow" . ($rel ? " $rel" : ""); |
|
| 1038 | + $rel = "nofollow".($rel ? " $rel" : ""); |
|
| 1039 | 1039 | $anofollow = inserer_attribut($a, "rel", $rel); |
| 1040 | 1040 | $texte = str_replace($a, $anofollow, $texte); |
| 1041 | 1041 | } |
@@ -1064,7 +1064,7 @@ discard block |
||
| 1064 | 1064 | $u = $GLOBALS['meta']['pcre_u']; |
| 1065 | 1065 | $texte = preg_replace("@</p>@iS", "\n", $texte); |
| 1066 | 1066 | $texte = preg_replace("@<p\b.*>@UiS", "<br />", $texte); |
| 1067 | - $texte = preg_replace("@^\s*<br />@S" . $u, "", $texte); |
|
| 1067 | + $texte = preg_replace("@^\s*<br />@S".$u, "", $texte); |
|
| 1068 | 1068 | |
| 1069 | 1069 | return $texte; |
| 1070 | 1070 | } |
@@ -1094,7 +1094,7 @@ discard block |
||
| 1094 | 1094 | return $texte; |
| 1095 | 1095 | } |
| 1096 | 1096 | include_spip('inc/texte'); |
| 1097 | - $tag = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $texte) ? |
|
| 1097 | + $tag = preg_match(',</?('._BALISES_BLOCS.')[>[:space:]],iS', $texte) ? |
|
| 1098 | 1098 | 'div' : 'span'; |
| 1099 | 1099 | |
| 1100 | 1100 | return "<$tag style='word-wrap:break-word;'>$texte</$tag>"; |
@@ -1203,7 +1203,7 @@ discard block |
||
| 1203 | 1203 | function attribut_html($texte, $textebrut = true) { |
| 1204 | 1204 | $u = $GLOBALS['meta']['pcre_u']; |
| 1205 | 1205 | if ($textebrut) { |
| 1206 | - $texte = preg_replace(array(",\n,", ",\s(?=\s),msS" . $u), array(" ", ""), textebrut($texte)); |
|
| 1206 | + $texte = preg_replace(array(",\n,", ",\s(?=\s),msS".$u), array(" ", ""), textebrut($texte)); |
|
| 1207 | 1207 | } |
| 1208 | 1208 | $texte = texte_backend($texte); |
| 1209 | 1209 | $texte = str_replace(array("'", '"'), array(''', '"'), $texte); |
@@ -1232,7 +1232,7 @@ discard block |
||
| 1232 | 1232 | # un message pour abs_url |
| 1233 | 1233 | $GLOBALS['mode_abs_url'] = 'url'; |
| 1234 | 1234 | $url = trim($url); |
| 1235 | - $r = ",^(?:" . _PROTOCOLES_STD . '):?/?/?$,iS'; |
|
| 1235 | + $r = ",^(?:"._PROTOCOLES_STD.'):?/?/?$,iS'; |
|
| 1236 | 1236 | |
| 1237 | 1237 | return preg_match($r, $url) ? '' : ($entites ? entites_html($url) : $url); |
| 1238 | 1238 | } |
@@ -1434,14 +1434,14 @@ discard block |
||
| 1434 | 1434 | if (strpos($texte, "<") !== false) { |
| 1435 | 1435 | include_spip('inc/lien'); |
| 1436 | 1436 | if (defined('_PREG_MODELE')) { |
| 1437 | - $preg_modeles = "@" . _PREG_MODELE . "@imsS"; |
|
| 1437 | + $preg_modeles = "@"._PREG_MODELE."@imsS"; |
|
| 1438 | 1438 | $texte = echappe_html($texte, '', true, $preg_modeles); |
| 1439 | 1439 | } |
| 1440 | 1440 | } |
| 1441 | 1441 | |
| 1442 | 1442 | $debut = ''; |
| 1443 | 1443 | $suite = $texte; |
| 1444 | - while ($t = strpos('-' . $suite, "\n", 1)) { |
|
| 1444 | + while ($t = strpos('-'.$suite, "\n", 1)) { |
|
| 1445 | 1445 | $debut .= substr($suite, 0, $t - 1); |
| 1446 | 1446 | $suite = substr($suite, $t); |
| 1447 | 1447 | $car = substr($suite, 0, 1); |
@@ -1458,11 +1458,11 @@ discard block |
||
| 1458 | 1458 | $suite = substr($suite, strlen($regs[0])); |
| 1459 | 1459 | } |
| 1460 | 1460 | } |
| 1461 | - $texte = $debut . $suite; |
|
| 1461 | + $texte = $debut.$suite; |
|
| 1462 | 1462 | |
| 1463 | 1463 | $texte = echappe_retour($texte); |
| 1464 | 1464 | |
| 1465 | - return $texte . $fin; |
|
| 1465 | + return $texte.$fin; |
|
| 1466 | 1466 | } |
| 1467 | 1467 | |
| 1468 | 1468 | |
@@ -1523,7 +1523,7 @@ discard block |
||
| 1523 | 1523 | } |
| 1524 | 1524 | |
| 1525 | 1525 | foreach ($regs as $reg) { |
| 1526 | - $cle = ($reg[1] ? $reg[1] . ':' : '') . $reg[2]; |
|
| 1526 | + $cle = ($reg[1] ? $reg[1].':' : '').$reg[2]; |
|
| 1527 | 1527 | $desc = $traduire($cle, $lang, true); |
| 1528 | 1528 | $l = $desc->langue; |
| 1529 | 1529 | // si pas de traduction, on laissera l'écriture de l'idiome entier dans le texte. |
@@ -1636,7 +1636,7 @@ discard block |
||
| 1636 | 1636 | // il ne faut pas echapper en div si propre produit un seul paragraphe |
| 1637 | 1637 | include_spip('inc/texte'); |
| 1638 | 1638 | $trad_propre = preg_replace(",(^<p[^>]*>|</p>$),Uims", "", propre($trad)); |
| 1639 | - $mode = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $trad_propre) ? 'div' : 'span'; |
|
| 1639 | + $mode = preg_match(',</?('._BALISES_BLOCS.')[>[:space:]],iS', $trad_propre) ? 'div' : 'span'; |
|
| 1640 | 1640 | $trad = code_echappement($trad, 'multi', false, $mode); |
| 1641 | 1641 | $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
| 1642 | 1642 | if (lang_dir($l) !== lang_dir($lang)) { |
@@ -1829,7 +1829,7 @@ discard block |
||
| 1829 | 1829 | if (is_array($balise)) { |
| 1830 | 1830 | array_walk( |
| 1831 | 1831 | $balise, |
| 1832 | - function(&$a, $key, $t){ |
|
| 1832 | + function(&$a, $key, $t) { |
|
| 1833 | 1833 | $a = extraire_attribut($a, $t); |
| 1834 | 1834 | }, |
| 1835 | 1835 | $attribut |
@@ -1916,14 +1916,14 @@ discard block |
||
| 1916 | 1916 | |
| 1917 | 1917 | if ($old !== null) { |
| 1918 | 1918 | // Remplacer l'ancien attribut du meme nom |
| 1919 | - $balise = $r[1] . $insert . $r[5]; |
|
| 1919 | + $balise = $r[1].$insert.$r[5]; |
|
| 1920 | 1920 | } else { |
| 1921 | 1921 | // preferer une balise " />" (comme <img />) |
| 1922 | 1922 | if (preg_match(',/>,', $balise)) { |
| 1923 | - $balise = preg_replace(",\s?/>,S", $insert . " />", $balise, 1); |
|
| 1923 | + $balise = preg_replace(",\s?/>,S", $insert." />", $balise, 1); |
|
| 1924 | 1924 | } // sinon une balise <a ...> ... </a> |
| 1925 | 1925 | else { |
| 1926 | - $balise = preg_replace(",\s?>,S", $insert . ">", $balise, 1); |
|
| 1926 | + $balise = preg_replace(",\s?>,S", $insert.">", $balise, 1); |
|
| 1927 | 1927 | } |
| 1928 | 1928 | } |
| 1929 | 1929 | |
@@ -1965,8 +1965,8 @@ discard block |
||
| 1965 | 1965 | // |
| 1966 | 1966 | // Quelques fonctions de calcul arithmetique |
| 1967 | 1967 | // |
| 1968 | -function floatstr($a) { return str_replace(',','.',(string)floatval($a)); } |
|
| 1969 | -function strize($f, $a, $b) { return floatstr($f(floatstr($a),floatstr($b))); } |
|
| 1968 | +function floatstr($a) { return str_replace(',', '.', (string) floatval($a)); } |
|
| 1969 | +function strize($f, $a, $b) { return floatstr($f(floatstr($a), floatstr($b))); } |
|
| 1970 | 1970 | |
| 1971 | 1971 | /** |
| 1972 | 1972 | * Additionne 2 nombres |
@@ -1986,7 +1986,7 @@ discard block |
||
| 1986 | 1986 | function plus($a, $b) { |
| 1987 | 1987 | return $a + $b; |
| 1988 | 1988 | } |
| 1989 | -function strplus($a, $b) {return strize('plus', $a, $b);} |
|
| 1989 | +function strplus($a, $b) {return strize('plus', $a, $b); } |
|
| 1990 | 1990 | /** |
| 1991 | 1991 | * Soustrait 2 nombres |
| 1992 | 1992 | * |
@@ -2005,7 +2005,7 @@ discard block |
||
| 2005 | 2005 | function moins($a, $b) { |
| 2006 | 2006 | return $a - $b; |
| 2007 | 2007 | } |
| 2008 | -function strmoins($a, $b) {return strize('moins', $a, $b);} |
|
| 2008 | +function strmoins($a, $b) {return strize('moins', $a, $b); } |
|
| 2009 | 2009 | |
| 2010 | 2010 | /** |
| 2011 | 2011 | * Multiplie 2 nombres |
@@ -2026,7 +2026,7 @@ discard block |
||
| 2026 | 2026 | function mult($a, $b) { |
| 2027 | 2027 | return $a * $b; |
| 2028 | 2028 | } |
| 2029 | -function strmult($a, $b) {return strize('mult', $a, $b);} |
|
| 2029 | +function strmult($a, $b) {return strize('mult', $a, $b); } |
|
| 2030 | 2030 | |
| 2031 | 2031 | /** |
| 2032 | 2032 | * Divise 2 nombres |
@@ -2047,7 +2047,7 @@ discard block |
||
| 2047 | 2047 | function div($a, $b) { |
| 2048 | 2048 | return $b ? $a / $b : 0; |
| 2049 | 2049 | } |
| 2050 | -function strdiv($a, $b) {return strize('div', $a, $b);} |
|
| 2050 | +function strdiv($a, $b) {return strize('div', $a, $b); } |
|
| 2051 | 2051 | |
| 2052 | 2052 | /** |
| 2053 | 2053 | * Retourne le modulo 2 nombres |
@@ -2088,13 +2088,13 @@ discard block |
||
| 2088 | 2088 | if (!defined('_TAGS_NOM_AUTEUR')) { |
| 2089 | 2089 | define('_TAGS_NOM_AUTEUR', ''); |
| 2090 | 2090 | } |
| 2091 | - $tags_acceptes = array_unique(explode(',', 'multi,' . _TAGS_NOM_AUTEUR)); |
|
| 2091 | + $tags_acceptes = array_unique(explode(',', 'multi,'._TAGS_NOM_AUTEUR)); |
|
| 2092 | 2092 | foreach ($tags_acceptes as $tag) { |
| 2093 | 2093 | if (strlen($tag)) { |
| 2094 | - $remp1[] = '<' . trim($tag) . '>'; |
|
| 2095 | - $remp1[] = '</' . trim($tag) . '>'; |
|
| 2096 | - $remp2[] = '\x60' . trim($tag) . '\x61'; |
|
| 2097 | - $remp2[] = '\x60/' . trim($tag) . '\x61'; |
|
| 2094 | + $remp1[] = '<'.trim($tag).'>'; |
|
| 2095 | + $remp1[] = '</'.trim($tag).'>'; |
|
| 2096 | + $remp2[] = '\x60'.trim($tag).'\x61'; |
|
| 2097 | + $remp2[] = '\x60/'.trim($tag).'\x61'; |
|
| 2098 | 2098 | } |
| 2099 | 2099 | } |
| 2100 | 2100 | $v_nom = str_replace($remp2, $remp1, supprimer_tags(str_replace($remp1, $remp2, $nom))); |
@@ -2157,7 +2157,7 @@ discard block |
||
| 2157 | 2157 | $s[] = preg_replace(',>[^<]+</a>,S', |
| 2158 | 2158 | '>' |
| 2159 | 2159 | . http_img_pack('attachment-16.png', $t, |
| 2160 | - 'title="' . attribut_html($t) . '"') |
|
| 2160 | + 'title="'.attribut_html($t).'"') |
|
| 2161 | 2161 | . '</a>', $tag); |
| 2162 | 2162 | } |
| 2163 | 2163 | } |
@@ -2218,10 +2218,10 @@ discard block |
||
| 2218 | 2218 | $fichier = basename($url); |
| 2219 | 2219 | |
| 2220 | 2220 | return '<a rel="enclosure"' |
| 2221 | - . ($url ? ' href="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2222 | - . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2223 | - . ($length ? ' title="' . spip_htmlspecialchars($length) . '"' : '') |
|
| 2224 | - . '>' . $fichier . '</a>'; |
|
| 2221 | + . ($url ? ' href="'.spip_htmlspecialchars($url).'"' : '') |
|
| 2222 | + . ($type ? ' type="'.spip_htmlspecialchars($type).'"' : '') |
|
| 2223 | + . ($length ? ' title="'.spip_htmlspecialchars($length).'"' : '') |
|
| 2224 | + . '>'.$fichier.'</a>'; |
|
| 2225 | 2225 | } |
| 2226 | 2226 | |
| 2227 | 2227 | /** |
@@ -2249,9 +2249,9 @@ discard block |
||
| 2249 | 2249 | } # vieux data |
| 2250 | 2250 | $fichier = basename($url); |
| 2251 | 2251 | $enclosures[] = '<enclosure' |
| 2252 | - . ($url ? ' url="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2253 | - . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2254 | - . ($length ? ' length="' . $length . '"' : '') |
|
| 2252 | + . ($url ? ' url="'.spip_htmlspecialchars($url).'"' : '') |
|
| 2253 | + . ($type ? ' type="'.spip_htmlspecialchars($type).'"' : '') |
|
| 2254 | + . ($length ? ' length="'.$length.'"' : '') |
|
| 2255 | 2255 | . ' />'; |
| 2256 | 2256 | } |
| 2257 | 2257 | } |
@@ -2277,7 +2277,7 @@ discard block |
||
| 2277 | 2277 | if (extraire_attribut($e, rel) == 'tag') { |
| 2278 | 2278 | $subjects .= '<dc:subject>' |
| 2279 | 2279 | . texte_backend(textebrut($e)) |
| 2280 | - . '</dc:subject>' . "\n"; |
|
| 2280 | + . '</dc:subject>'."\n"; |
|
| 2281 | 2281 | } |
| 2282 | 2282 | } |
| 2283 | 2283 | |
@@ -2313,7 +2313,7 @@ discard block |
||
| 2313 | 2313 | if (is_array($texte)) { |
| 2314 | 2314 | array_walk( |
| 2315 | 2315 | $texte, |
| 2316 | - function(&$a, $key, $t){ |
|
| 2316 | + function(&$a, $key, $t) { |
|
| 2317 | 2317 | $a = extraire_balise($a, $t); |
| 2318 | 2318 | }, |
| 2319 | 2319 | $tag |
@@ -2357,7 +2357,7 @@ discard block |
||
| 2357 | 2357 | if (is_array($texte)) { |
| 2358 | 2358 | array_walk( |
| 2359 | 2359 | $texte, |
| 2360 | - function(&$a, $key, $t){ |
|
| 2360 | + function(&$a, $key, $t) { |
|
| 2361 | 2361 | $a = extraire_balises($a, $t); |
| 2362 | 2362 | }, |
| 2363 | 2363 | $tag |
@@ -2483,7 +2483,7 @@ discard block |
||
| 2483 | 2483 | if ($fond != '404') { |
| 2484 | 2484 | $contexte = array_shift($p); |
| 2485 | 2485 | $contexte['page'] = $fond; |
| 2486 | - $action = preg_replace('/([?]' . preg_quote($fond) . '[^&=]*[0-9]+)(&|$)/', '?&', $action); |
|
| 2486 | + $action = preg_replace('/([?]'.preg_quote($fond).'[^&=]*[0-9]+)(&|$)/', '?&', $action); |
|
| 2487 | 2487 | } |
| 2488 | 2488 | } |
| 2489 | 2489 | // defaire ce qu'a injecte urls_decoder_url : a revoir en modifiant la signature de urls_decoder_url |
@@ -2538,9 +2538,9 @@ discard block |
||
| 2538 | 2538 | . '"' |
| 2539 | 2539 | . (is_null($val) |
| 2540 | 2540 | ? '' |
| 2541 | - : ' value="' . entites_html($val) . '"' |
|
| 2541 | + : ' value="'.entites_html($val).'"' |
|
| 2542 | 2542 | ) |
| 2543 | - . ' type="hidden"' . "\n/>"; |
|
| 2543 | + . ' type="hidden"'."\n/>"; |
|
| 2544 | 2544 | } |
| 2545 | 2545 | |
| 2546 | 2546 | return join("", $hidden); |
@@ -2703,12 +2703,12 @@ discard block |
||
| 2703 | 2703 | if ($pas < 1) { |
| 2704 | 2704 | return ''; |
| 2705 | 2705 | } |
| 2706 | - $ancre = 'pagination' . $nom; // #pagination_articles |
|
| 2707 | - $debut = 'debut' . $nom; // 'debut_articles' |
|
| 2706 | + $ancre = 'pagination'.$nom; // #pagination_articles |
|
| 2707 | + $debut = 'debut'.$nom; // 'debut_articles' |
|
| 2708 | 2708 | |
| 2709 | 2709 | // n'afficher l'ancre qu'une fois |
| 2710 | 2710 | if (!isset($ancres[$ancre])) { |
| 2711 | - $bloc_ancre = $ancres[$ancre] = "<a name='" . $ancre . "' id='" . $ancre . "'></a>"; |
|
| 2711 | + $bloc_ancre = $ancres[$ancre] = "<a name='".$ancre."' id='".$ancre."'></a>"; |
|
| 2712 | 2712 | } else { |
| 2713 | 2713 | $bloc_ancre = ''; |
| 2714 | 2714 | } |
@@ -2738,7 +2738,7 @@ discard block |
||
| 2738 | 2738 | } |
| 2739 | 2739 | |
| 2740 | 2740 | if ($modele) { |
| 2741 | - $modele = '_' . $modele; |
|
| 2741 | + $modele = '_'.$modele; |
|
| 2742 | 2742 | } |
| 2743 | 2743 | |
| 2744 | 2744 | return recuperer_fond("modeles/pagination$modele", $pagination, array('trim' => true), $connect); |
@@ -2763,7 +2763,7 @@ discard block |
||
| 2763 | 2763 | return preg_replace_callback( |
| 2764 | 2764 | ",url\s*\(\s*['\"]?([^'\"/#\s][^:]*)['\"]?\s*\),Uims", |
| 2765 | 2765 | function($x) use ($path) { |
| 2766 | - return "url('" . suivre_lien($path, $x[1]) . "')"; |
|
| 2766 | + return "url('".suivre_lien($path, $x[1])."')"; |
|
| 2767 | 2767 | }, |
| 2768 | 2768 | $contenu |
| 2769 | 2769 | ); |
@@ -2825,14 +2825,14 @@ discard block |
||
| 2825 | 2825 | ) { |
| 2826 | 2826 | $distant = true; |
| 2827 | 2827 | $cssf = parse_url($css); |
| 2828 | - $cssf = $cssf['path'] . ($cssf['query'] ? "?" . $cssf['query'] : ""); |
|
| 2828 | + $cssf = $cssf['path'].($cssf['query'] ? "?".$cssf['query'] : ""); |
|
| 2829 | 2829 | $cssf = preg_replace(',[?:&=],', "_", $cssf); |
| 2830 | 2830 | } else { |
| 2831 | 2831 | $distant = false; |
| 2832 | 2832 | $cssf = $css; |
| 2833 | 2833 | // 1. regarder d'abord si un fichier avec la bonne direction n'est pas aussi |
| 2834 | 2834 | //propose (rien a faire dans ce cas) |
| 2835 | - $f = preg_replace(',(_rtl)?\.css$,i', '_' . $ndir . '.css', $css); |
|
| 2835 | + $f = preg_replace(',(_rtl)?\.css$,i', '_'.$ndir.'.css', $css); |
|
| 2836 | 2836 | if (@file_exists($f)) { |
| 2837 | 2837 | return $f; |
| 2838 | 2838 | } |
@@ -2842,7 +2842,7 @@ discard block |
||
| 2842 | 2842 | $dir_var = sous_repertoire(_DIR_VAR, 'cache-css'); |
| 2843 | 2843 | $f = $dir_var |
| 2844 | 2844 | . preg_replace(',.*/(.*?)(_rtl)?\.css,', '\1', $cssf) |
| 2845 | - . '.' . substr(md5($cssf), 0, 4) . '_' . $ndir . '.css'; |
|
| 2845 | + . '.'.substr(md5($cssf), 0, 4).'_'.$ndir.'.css'; |
|
| 2846 | 2846 | |
| 2847 | 2847 | // la css peut etre distante (url absolue !) |
| 2848 | 2848 | if ($distant) { |
@@ -2887,8 +2887,8 @@ discard block |
||
| 2887 | 2887 | } // si la css_direction commence par $dir_var on la fait passer pour une absolue |
| 2888 | 2888 | elseif (substr($css_direction, 0, strlen($dir_var)) == $dir_var) { |
| 2889 | 2889 | $css_direction = substr($css_direction, strlen($dir_var)); |
| 2890 | - $src_faux_abs["/@@@@@@/" . $css_direction] = $css_direction; |
|
| 2891 | - $css_direction = "/@@@@@@/" . $css_direction; |
|
| 2890 | + $src_faux_abs["/@@@@@@/".$css_direction] = $css_direction; |
|
| 2891 | + $css_direction = "/@@@@@@/".$css_direction; |
|
| 2892 | 2892 | } |
| 2893 | 2893 | $src[] = $regs[0][$k]; |
| 2894 | 2894 | $src_direction_css[] = str_replace($import_css, $css_direction, $regs[0][$k]); |
@@ -2937,7 +2937,7 @@ discard block |
||
| 2937 | 2937 | |
| 2938 | 2938 | $f = basename($css, '.css'); |
| 2939 | 2939 | $f = sous_repertoire(_DIR_VAR, 'cache-css') |
| 2940 | - . preg_replace(",(.*?)(_rtl|_ltr)?$,", "\\1-urlabs-" . substr(md5("$css-urlabs"), 0, 4) . "\\2", $f) |
|
| 2940 | + . preg_replace(",(.*?)(_rtl|_ltr)?$,", "\\1-urlabs-".substr(md5("$css-urlabs"), 0, 4)."\\2", $f) |
|
| 2941 | 2941 | . '.css'; |
| 2942 | 2942 | |
| 2943 | 2943 | if ((@filemtime($f) > @filemtime($css)) and (_VAR_MODE != 'recalcul')) { |
@@ -2946,7 +2946,7 @@ discard block |
||
| 2946 | 2946 | |
| 2947 | 2947 | if ($url_absolue_css == $css) { |
| 2948 | 2948 | if (strncmp($GLOBALS['meta']['adresse_site'], $css, $l = strlen($GLOBALS['meta']['adresse_site'])) != 0 |
| 2949 | - or !lire_fichier(_DIR_RACINE . substr($css, $l), $contenu) |
|
| 2949 | + or !lire_fichier(_DIR_RACINE.substr($css, $l), $contenu) |
|
| 2950 | 2950 | ) { |
| 2951 | 2951 | include_spip('inc/distant'); |
| 2952 | 2952 | if (!$contenu = recuperer_page($css)) { |
@@ -3056,7 +3056,7 @@ discard block |
||
| 3056 | 3056 | $expression = str_replace("\/", "/", $expression); |
| 3057 | 3057 | $expression = str_replace("/", "\/", $expression); |
| 3058 | 3058 | |
| 3059 | - if (preg_match('/' . $expression . '/' . $modif, $texte, $r)) { |
|
| 3059 | + if (preg_match('/'.$expression.'/'.$modif, $texte, $r)) { |
|
| 3060 | 3060 | if (isset($r[$capte])) { |
| 3061 | 3061 | return $r[$capte]; |
| 3062 | 3062 | } else { |
@@ -3094,7 +3094,7 @@ discard block |
||
| 3094 | 3094 | $expression = str_replace("\/", "/", $expression); |
| 3095 | 3095 | $expression = str_replace("/", "\/", $expression); |
| 3096 | 3096 | |
| 3097 | - return preg_replace('/' . $expression . '/' . $modif, $replace, $texte); |
|
| 3097 | + return preg_replace('/'.$expression.'/'.$modif, $replace, $texte); |
|
| 3098 | 3098 | } |
| 3099 | 3099 | |
| 3100 | 3100 | |
@@ -3113,7 +3113,7 @@ discard block |
||
| 3113 | 3113 | function traiter_doublons_documents(&$doublons, $letexte) { |
| 3114 | 3114 | |
| 3115 | 3115 | // Verifier dans le texte & les notes (pas beau, helas) |
| 3116 | - $t = $letexte . $GLOBALS['les_notes']; |
|
| 3116 | + $t = $letexte.$GLOBALS['les_notes']; |
|
| 3117 | 3117 | |
| 3118 | 3118 | if (strstr($t, 'spip_document_') // evite le preg_match_all si inutile |
| 3119 | 3119 | and preg_match_all( |
@@ -3123,7 +3123,7 @@ discard block |
||
| 3123 | 3123 | if (!isset($doublons['documents'])) { |
| 3124 | 3124 | $doublons['documents'] = ""; |
| 3125 | 3125 | } |
| 3126 | - $doublons['documents'] .= "," . join(',', $matches[1]); |
|
| 3126 | + $doublons['documents'] .= ",".join(',', $matches[1]); |
|
| 3127 | 3127 | } |
| 3128 | 3128 | |
| 3129 | 3129 | return $letexte; |
@@ -3180,7 +3180,7 @@ discard block |
||
| 3180 | 3180 | if ($env) { |
| 3181 | 3181 | foreach ($env as $i => $j) { |
| 3182 | 3182 | if (is_string($j) and !in_array($i, $ignore_params)) { |
| 3183 | - $texte .= "<param name='" . $i . "'\n\tvalue='" . $j . "' />"; |
|
| 3183 | + $texte .= "<param name='".$i."'\n\tvalue='".$j."' />"; |
|
| 3184 | 3184 | } |
| 3185 | 3185 | } |
| 3186 | 3186 | } |
@@ -3219,7 +3219,7 @@ discard block |
||
| 3219 | 3219 | if ($env) { |
| 3220 | 3220 | foreach ($env as $i => $j) { |
| 3221 | 3221 | if (is_string($j) and !in_array($i, $ignore_params)) { |
| 3222 | - $texte .= $i . "='" . $j . "' "; |
|
| 3222 | + $texte .= $i."='".$j."' "; |
|
| 3223 | 3223 | } |
| 3224 | 3224 | } |
| 3225 | 3225 | } |
@@ -3305,13 +3305,13 @@ discard block |
||
| 3305 | 3305 | $img_file = chemin_image($img); |
| 3306 | 3306 | } |
| 3307 | 3307 | else { |
| 3308 | - if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true){ |
|
| 3308 | + if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true) { |
|
| 3309 | 3309 | // on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png |
| 3310 | 3310 | // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png |
| 3311 | 3311 | if (preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m) |
| 3312 | - and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . "-xx.svg" |
|
| 3312 | + and $variante_svg_generique = substr($img_file, 0, -strlen($m[0]))."-xx.svg" |
|
| 3313 | 3313 | and file_exists($variante_svg_generique)) { |
| 3314 | - if ($variante_svg_size = substr($variante_svg_generique,0,-6) . $m[1] . ".svg" and file_exists($variante_svg_size)) { |
|
| 3314 | + if ($variante_svg_size = substr($variante_svg_generique, 0, -6).$m[1].".svg" and file_exists($variante_svg_size)) { |
|
| 3315 | 3315 | $img_file = $variante_svg_size; |
| 3316 | 3316 | } |
| 3317 | 3317 | else { |
@@ -3333,12 +3333,12 @@ discard block |
||
| 3333 | 3333 | return ""; |
| 3334 | 3334 | } |
| 3335 | 3335 | } |
| 3336 | - $atts .= " width='" . $largeur . "' height='" . $hauteur . "'"; |
|
| 3336 | + $atts .= " width='".$largeur."' height='".$hauteur."'"; |
|
| 3337 | 3337 | } |
| 3338 | 3338 | |
| 3339 | - return "<img src='$img_file' alt='" . attribut_html($alt ? $alt : $title) . "'" |
|
| 3340 | - . ($title ? ' title="' . attribut_html($title) . '"' : '') |
|
| 3341 | - . " " . ltrim($atts) |
|
| 3339 | + return "<img src='$img_file' alt='".attribut_html($alt ? $alt : $title)."'" |
|
| 3340 | + . ($title ? ' title="'.attribut_html($title).'"' : '') |
|
| 3341 | + . " ".ltrim($atts) |
|
| 3342 | 3342 | . " />"; |
| 3343 | 3343 | } |
| 3344 | 3344 | |
@@ -3350,12 +3350,12 @@ discard block |
||
| 3350 | 3350 | * @param string $size |
| 3351 | 3351 | * @return string |
| 3352 | 3352 | */ |
| 3353 | -function http_style_background($img, $att = '', $size=null) { |
|
| 3354 | - if ($size and is_numeric($size)){ |
|
| 3355 | - $size = trim($size) . "px"; |
|
| 3353 | +function http_style_background($img, $att = '', $size = null) { |
|
| 3354 | + if ($size and is_numeric($size)) { |
|
| 3355 | + $size = trim($size)."px"; |
|
| 3356 | 3356 | } |
| 3357 | - return " style='background" . |
|
| 3358 | - ($att ? "" : "-image") . ": url(\"" . chemin_image($img) . "\")" . ($att ? (' ' . $att) : '') . ";" |
|
| 3357 | + return " style='background". |
|
| 3358 | + ($att ? "" : "-image").": url(\"".chemin_image($img)."\")".($att ? (' '.$att) : '').";" |
|
| 3359 | 3359 | . ($size ? "background-size:{$size};" : '') |
| 3360 | 3360 | . "'"; |
| 3361 | 3361 | } |
@@ -3372,8 +3372,8 @@ discard block |
||
| 3372 | 3372 | * @return string |
| 3373 | 3373 | * Code HTML de la balise IMG |
| 3374 | 3374 | */ |
| 3375 | -function filtre_balise_img_dist($img, $alt = "", $class = "", $width=null) { |
|
| 3376 | - $atts = $class ? " class='" . attribut_html($class) . "'" : ''; |
|
| 3375 | +function filtre_balise_img_dist($img, $alt = "", $class = "", $width = null) { |
|
| 3376 | + $atts = $class ? " class='".attribut_html($class)."'" : ''; |
|
| 3377 | 3377 | // ecriture courte : on donne le width en 2e arg |
| 3378 | 3378 | if (empty($width) and is_numeric($alt)) { |
| 3379 | 3379 | $width = $alt; |
@@ -3414,11 +3414,11 @@ discard block |
||
| 3414 | 3414 | if ($class) { |
| 3415 | 3415 | $balise_svg = inserer_attribut($balise_svg, 'class', $class); |
| 3416 | 3416 | } |
| 3417 | - if ($alt){ |
|
| 3417 | + if ($alt) { |
|
| 3418 | 3418 | $balise_svg = inserer_attribut($balise_svg, 'role', 'img'); |
| 3419 | - $id = "img-svg-title-" . substr(md5("$file:$svg:$alt"),0,4); |
|
| 3419 | + $id = "img-svg-title-".substr(md5("$file:$svg:$alt"), 0, 4); |
|
| 3420 | 3420 | $balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id); |
| 3421 | - $title = "<title id=\"$id\">" . entites_html($alt)."</title>\n"; |
|
| 3421 | + $title = "<title id=\"$id\">".entites_html($alt)."</title>\n"; |
|
| 3422 | 3422 | $balise_svg .= $title; |
| 3423 | 3423 | } |
| 3424 | 3424 | else { |
@@ -3452,7 +3452,7 @@ discard block |
||
| 3452 | 3452 | $texte = ''; |
| 3453 | 3453 | if (is_array($tableau)) { |
| 3454 | 3454 | foreach ($tableau as $k => $v) { |
| 3455 | - $res = recuperer_fond('modeles/' . $modele, |
|
| 3455 | + $res = recuperer_fond('modeles/'.$modele, |
|
| 3456 | 3456 | array_merge(array('cle' => $k), (is_array($v) ? $v : array('valeur' => $v))) |
| 3457 | 3457 | ); |
| 3458 | 3458 | $texte .= $res; |
@@ -3629,7 +3629,7 @@ discard block |
||
| 3629 | 3629 | } |
| 3630 | 3630 | |
| 3631 | 3631 | $c = serialize($c); |
| 3632 | - $cle = calculer_cle_action($form . $c); |
|
| 3632 | + $cle = calculer_cle_action($form.$c); |
|
| 3633 | 3633 | $c = "$cle:$c"; |
| 3634 | 3634 | |
| 3635 | 3635 | // on ne stocke pas les contextes dans des fichiers caches |
@@ -3679,15 +3679,15 @@ discard block |
||
| 3679 | 3679 | } |
| 3680 | 3680 | // toujours encoder l'url source dans le bloc ajax |
| 3681 | 3681 | $r = self(); |
| 3682 | - $r = ' data-origin="' . $r . '"'; |
|
| 3682 | + $r = ' data-origin="'.$r.'"'; |
|
| 3683 | 3683 | $class = 'ajaxbloc'; |
| 3684 | 3684 | if ($ajaxid and is_string($ajaxid)) { |
| 3685 | 3685 | // ajaxid est normalement conforme a un nom de classe css |
| 3686 | 3686 | // on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution |
| 3687 | - $class .= ' ajax-id-' . entites_html($ajaxid); |
|
| 3687 | + $class .= ' ajax-id-'.entites_html($ajaxid); |
|
| 3688 | 3688 | } |
| 3689 | 3689 | |
| 3690 | - return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n"; |
|
| 3690 | + return "<div class='$class' "."data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n"; |
|
| 3691 | 3691 | } |
| 3692 | 3692 | |
| 3693 | 3693 | /** |
@@ -3726,11 +3726,11 @@ discard block |
||
| 3726 | 3726 | // extraire la signature en debut de contexte |
| 3727 | 3727 | // et la verifier avant de deserializer |
| 3728 | 3728 | // format : signature:donneesserializees |
| 3729 | - if ($p = strpos($c,":")){ |
|
| 3730 | - $cle = substr($c,0,$p); |
|
| 3731 | - $c = substr($c,$p+1); |
|
| 3729 | + if ($p = strpos($c, ":")) { |
|
| 3730 | + $cle = substr($c, 0, $p); |
|
| 3731 | + $c = substr($c, $p + 1); |
|
| 3732 | 3732 | |
| 3733 | - if ($cle == calculer_cle_action($form . $c)) { |
|
| 3733 | + if ($cle == calculer_cle_action($form.$c)) { |
|
| 3734 | 3734 | $env = @unserialize($c); |
| 3735 | 3735 | return $env; |
| 3736 | 3736 | } |
@@ -3831,9 +3831,9 @@ discard block |
||
| 3831 | 3831 | } else { |
| 3832 | 3832 | $bal = 'a'; |
| 3833 | 3833 | $att = "href='$url'" |
| 3834 | - . ($title ? " title='" . attribut_html($title) . "'" : '') |
|
| 3835 | - . ($class ? " class='" . attribut_html($class) . "'" : '') |
|
| 3836 | - . ($rel ? " rel='" . attribut_html($rel) . "'" : '') |
|
| 3834 | + . ($title ? " title='".attribut_html($title)."'" : '') |
|
| 3835 | + . ($class ? " class='".attribut_html($class)."'" : '') |
|
| 3836 | + . ($rel ? " rel='".attribut_html($rel)."'" : '') |
|
| 3837 | 3837 | . $evt; |
| 3838 | 3838 | } |
| 3839 | 3839 | if ($libelle === null) { |
@@ -3907,7 +3907,7 @@ discard block |
||
| 3907 | 3907 | } |
| 3908 | 3908 | |
| 3909 | 3909 | // ajouter le type d'objet dans la class de l'icone |
| 3910 | - $class .= " " . substr(basename($fond), 0, -4); |
|
| 3910 | + $class .= " ".substr(basename($fond), 0, -4); |
|
| 3911 | 3911 | |
| 3912 | 3912 | $alt = attribut_html($texte); |
| 3913 | 3913 | $title = " title=\"$alt\""; // est-ce pertinent de doubler le alt par un title ? |
@@ -3932,7 +3932,7 @@ discard block |
||
| 3932 | 3932 | if ($fonction) { |
| 3933 | 3933 | // 2 images pour composer l'icone : le fond (article) en background, |
| 3934 | 3934 | // la fonction (new) en image |
| 3935 | - $icone = http_img_pack($fonction, $alt, "width='$size' height='$size'\n" . |
|
| 3935 | + $icone = http_img_pack($fonction, $alt, "width='$size' height='$size'\n". |
|
| 3936 | 3936 | http_style_background($fond, '', $size)); |
| 3937 | 3937 | } else { |
| 3938 | 3938 | $icone = http_img_pack($fond, $alt, "width='$size' height='$size'"); |
@@ -4166,13 +4166,13 @@ discard block |
||
| 4166 | 4166 | $res = ""; |
| 4167 | 4167 | foreach ($boutons as $page => $detail) { |
| 4168 | 4168 | if ($detail->icone and strlen(trim($detail->icone))) { |
| 4169 | - $res .= "\n.navigation_avec_icones #bando1_$page {background-image:url(" . $detail->icone . ");}"; |
|
| 4169 | + $res .= "\n.navigation_avec_icones #bando1_$page {background-image:url(".$detail->icone.");}"; |
|
| 4170 | 4170 | } |
| 4171 | 4171 | $selecteur = (in_array($page, array('outils_rapides', 'outils_collaboratifs')) ? "" : ".navigation_avec_icones "); |
| 4172 | 4172 | if (is_array($detail->sousmenu)) { |
| 4173 | 4173 | foreach ($detail->sousmenu as $souspage => $sousdetail) { |
| 4174 | 4174 | if ($sousdetail->icone and strlen(trim($sousdetail->icone))) { |
| 4175 | - $res .= "\n$selecteur.bando2_$souspage {background-image:url(" . $sousdetail->icone . ");}"; |
|
| 4175 | + $res .= "\n$selecteur.bando2_$souspage {background-image:url(".$sousdetail->icone.");}"; |
|
| 4176 | 4176 | } |
| 4177 | 4177 | } |
| 4178 | 4178 | } |
@@ -4198,17 +4198,17 @@ discard block |
||
| 4198 | 4198 | */ |
| 4199 | 4199 | function bouton_action($libelle, $url, $class = "", $confirm = "", $title = "", $callback = "") { |
| 4200 | 4200 | if ($confirm) { |
| 4201 | - $confirm = "confirm(\"" . attribut_html($confirm) . "\")"; |
|
| 4201 | + $confirm = "confirm(\"".attribut_html($confirm)."\")"; |
|
| 4202 | 4202 | if ($callback) { |
| 4203 | 4203 | $callback = "$confirm?($callback):false"; |
| 4204 | 4204 | } else { |
| 4205 | 4205 | $callback = $confirm; |
| 4206 | 4206 | } |
| 4207 | 4207 | } |
| 4208 | - $onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : ""; |
|
| 4208 | + $onclick = $callback ? " onclick='return ".addcslashes($callback, "'")."'" : ""; |
|
| 4209 | 4209 | $title = $title ? " title='$title'" : ""; |
| 4210 | 4210 | |
| 4211 | - return "<form class='bouton_action_post $class' method='post' action='$url'><div>" . form_hidden($url) |
|
| 4211 | + return "<form class='bouton_action_post $class' method='post' action='$url'><div>".form_hidden($url) |
|
| 4212 | 4212 | . "<button type='submit' class='submit'$title$onclick>$libelle</button></div></form>"; |
| 4213 | 4213 | } |
| 4214 | 4214 | |
@@ -4347,14 +4347,14 @@ discard block |
||
| 4347 | 4347 | $champ_titre = ""; |
| 4348 | 4348 | if ($demande_titre) { |
| 4349 | 4349 | // si pas de titre declare mais champ titre, il sera peuple par le select * |
| 4350 | - $champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : ''; |
|
| 4350 | + $champ_titre = (!empty($desc['titre'])) ? ', '.$desc['titre'] : ''; |
|
| 4351 | 4351 | } |
| 4352 | 4352 | include_spip('base/abstract_sql'); |
| 4353 | 4353 | include_spip('base/connect_sql'); |
| 4354 | 4354 | $objets[$type_objet][$id_objet] = sql_fetsel( |
| 4355 | - '*' . $champ_titre, |
|
| 4355 | + '*'.$champ_titre, |
|
| 4356 | 4356 | $desc['table_sql'], |
| 4357 | - id_table_objet($type_objet) . ' = ' . intval($id_objet) |
|
| 4357 | + id_table_objet($type_objet).' = '.intval($id_objet) |
|
| 4358 | 4358 | ); |
| 4359 | 4359 | } |
| 4360 | 4360 | |
@@ -4424,7 +4424,7 @@ discard block |
||
| 4424 | 4424 | return $texte; |
| 4425 | 4425 | } |
| 4426 | 4426 | |
| 4427 | - $traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement); |
|
| 4427 | + $traitement = str_replace('%s', "'".texte_script($texte)."'", $traitement); |
|
| 4428 | 4428 | |
| 4429 | 4429 | // Fournir $connect et $Pile[0] au traitement si besoin |
| 4430 | 4430 | $Pile = array(0 => $env); |
@@ -4458,7 +4458,7 @@ discard block |
||
| 4458 | 4458 | } |
| 4459 | 4459 | $url = generer_url_entite($id_objet, $objet, '', '', $connect); |
| 4460 | 4460 | |
| 4461 | - return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . "</a>"; |
|
| 4461 | + return "<a href='$url' class='$objet'>".couper($titre, $longueur)."</a>"; |
|
| 4462 | 4462 | } |
| 4463 | 4463 | |
| 4464 | 4464 | |
@@ -4477,10 +4477,10 @@ discard block |
||
| 4477 | 4477 | function wrap($texte, $wrap) { |
| 4478 | 4478 | $balises = extraire_balises($wrap); |
| 4479 | 4479 | if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) { |
| 4480 | - $texte = $wrap . $texte; |
|
| 4480 | + $texte = $wrap.$texte; |
|
| 4481 | 4481 | $regs = array_reverse($regs[1]); |
| 4482 | - $wrap = "</" . implode("></", $regs) . ">"; |
|
| 4483 | - $texte = $texte . $wrap; |
|
| 4482 | + $wrap = "</".implode("></", $regs).">"; |
|
| 4483 | + $texte = $texte.$wrap; |
|
| 4484 | 4484 | } |
| 4485 | 4485 | |
| 4486 | 4486 | return $texte; |
@@ -4511,7 +4511,7 @@ discard block |
||
| 4511 | 4511 | |
| 4512 | 4512 | // caster $u en array si besoin |
| 4513 | 4513 | if (is_object($u)) { |
| 4514 | - $u = (array)$u; |
|
| 4514 | + $u = (array) $u; |
|
| 4515 | 4515 | } |
| 4516 | 4516 | |
| 4517 | 4517 | if (is_array($u)) { |
@@ -4532,7 +4532,7 @@ discard block |
||
| 4532 | 4532 | // sinon on passe a la ligne et on indente |
| 4533 | 4533 | $i_str = str_pad("", $indent, " "); |
| 4534 | 4534 | foreach ($u as $k => $v) { |
| 4535 | - $out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2); |
|
| 4535 | + $out .= $join.$i_str."$k: ".filtre_print_dist($v, $join, $indent + 2); |
|
| 4536 | 4536 | } |
| 4537 | 4537 | |
| 4538 | 4538 | return $out; |
@@ -4585,8 +4585,8 @@ discard block |
||
| 4585 | 4585 | * @param string $class |
| 4586 | 4586 | * @return string |
| 4587 | 4587 | */ |
| 4588 | -function objet_icone($objet, $taille = 24, $class='') { |
|
| 4589 | - $icone = objet_info($objet, 'icone_objet') . "-" . $taille . ".png"; |
|
| 4588 | +function objet_icone($objet, $taille = 24, $class = '') { |
|
| 4589 | + $icone = objet_info($objet, 'icone_objet')."-".$taille.".png"; |
|
| 4590 | 4590 | $icone = chemin_image($icone); |
| 4591 | 4591 | $balise_img = charger_filtre('balise_img'); |
| 4592 | 4592 | |
@@ -4610,12 +4610,12 @@ discard block |
||
| 4610 | 4610 | * @param array $options |
| 4611 | 4611 | * @return string |
| 4612 | 4612 | */ |
| 4613 | -function objet_T($objet, $chaine, $args = array(), $options = array()){ |
|
| 4614 | - $chaine = explode(':',$chaine); |
|
| 4615 | - if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, array('force'=>false)))) { |
|
| 4613 | +function objet_T($objet, $chaine, $args = array(), $options = array()) { |
|
| 4614 | + $chaine = explode(':', $chaine); |
|
| 4615 | + if ($t = _T($objet.':'.end($chaine), $args, array_merge($options, array('force'=>false)))) { |
|
| 4616 | 4616 | return $t; |
| 4617 | 4617 | } |
| 4618 | - $chaine = implode(':',$chaine); |
|
| 4618 | + $chaine = implode(':', $chaine); |
|
| 4619 | 4619 | return _T($chaine, $args, $options); |
| 4620 | 4620 | } |
| 4621 | 4621 | |
@@ -4675,11 +4675,11 @@ discard block |
||
| 4675 | 4675 | $cache = recuperer_fond($fond, $contexte, $options, $connect); |
| 4676 | 4676 | |
| 4677 | 4677 | // calculer le nom de la css |
| 4678 | - $dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension); |
|
| 4678 | + $dir_var = sous_repertoire(_DIR_VAR, 'cache-'.$extension); |
|
| 4679 | 4679 | $nom_safe = preg_replace(",\W,", '_', str_replace('.', '_', $fond)); |
| 4680 | 4680 | $contexte_implicite = calculer_contexte_implicite(); |
| 4681 | - $filename = $dir_var . $extension . "dyn-$nom_safe-" |
|
| 4682 | - . substr(md5($fond . serialize($contexte_implicite) . serialize($contexte) . $connect), 0, 8) |
|
| 4681 | + $filename = $dir_var.$extension."dyn-$nom_safe-" |
|
| 4682 | + . substr(md5($fond.serialize($contexte_implicite).serialize($contexte).$connect), 0, 8) |
|
| 4683 | 4683 | . ".$extension"; |
| 4684 | 4684 | |
| 4685 | 4685 | // mettre a jour le fichier si il n'existe pas |
@@ -4687,8 +4687,8 @@ discard block |
||
| 4687 | 4687 | // le dernier fichier produit est toujours suffixe par .last |
| 4688 | 4688 | // et recopie sur le fichier cible uniquement si il change |
| 4689 | 4689 | if (!file_exists($filename) |
| 4690 | - or !file_exists($filename . ".last") |
|
| 4691 | - or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . ".last") < $cache['lastmodified']) |
|
| 4690 | + or !file_exists($filename.".last") |
|
| 4691 | + or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename.".last") < $cache['lastmodified']) |
|
| 4692 | 4692 | or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul') |
| 4693 | 4693 | ) { |
| 4694 | 4694 | $contenu = $cache['texte']; |
@@ -4707,15 +4707,15 @@ discard block |
||
| 4707 | 4707 | } |
| 4708 | 4708 | // pas de date dans le commentaire car sinon ca invalide le md5 et force la maj |
| 4709 | 4709 | // mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non |
| 4710 | - $comment .= "}\n md5:" . md5($contenu) . " */\n"; |
|
| 4710 | + $comment .= "}\n md5:".md5($contenu)." */\n"; |
|
| 4711 | 4711 | } |
| 4712 | 4712 | // et ecrire le fichier |
| 4713 | - ecrire_fichier($filename . ".last", $comment . $contenu); |
|
| 4713 | + ecrire_fichier($filename.".last", $comment.$contenu); |
|
| 4714 | 4714 | // regarder si on recopie |
| 4715 | 4715 | if (!file_exists($filename) |
| 4716 | - or md5_file($filename) !== md5_file($filename . ".last") |
|
| 4716 | + or md5_file($filename) !== md5_file($filename.".last") |
|
| 4717 | 4717 | ) { |
| 4718 | - @copy($filename . ".last", $filename); |
|
| 4718 | + @copy($filename.".last", $filename); |
|
| 4719 | 4719 | clearstatcache(true, $filename); // eviter que PHP ne reserve le vieux timestamp |
| 4720 | 4720 | } |
| 4721 | 4721 | } |
@@ -16,10 +16,10 @@ discard block |
||
| 16 | 16 | * @package SPIP\Core\Pipelines |
| 17 | 17 | **/ |
| 18 | 18 | if (!defined('_ECRIRE_INC_VERSION')) { |
| 19 | - return; |
|
| 19 | + return; |
|
| 20 | 20 | } |
| 21 | 21 | if (test_espace_prive()) { |
| 22 | - include_spip('inc/pipelines_ecrire'); |
|
| 22 | + include_spip('inc/pipelines_ecrire'); |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | |
@@ -45,28 +45,28 @@ discard block |
||
| 45 | 45 | * @return string Contenu qui sera inséré dans le head HTML |
| 46 | 46 | **/ |
| 47 | 47 | function f_jQuery($texte) { |
| 48 | - $x = ''; |
|
| 49 | - $jquery_plugins = pipeline('jquery_plugins', |
|
| 50 | - array( |
|
| 51 | - 'javascript/jquery.js', |
|
| 52 | - 'javascript/jquery-migrate-3.0.1.js', |
|
| 53 | - 'javascript/jquery.form.js', |
|
| 54 | - 'javascript/jquery.autosave.js', |
|
| 55 | - 'javascript/jquery.placeholder-label.js', |
|
| 56 | - 'javascript/ajaxCallback.js', |
|
| 57 | - 'javascript/js.cookie.js', |
|
| 58 | - 'javascript/jquery.cookie.js' |
|
| 59 | - )); |
|
| 60 | - foreach (array_unique($jquery_plugins) as $script) { |
|
| 61 | - if ($script = find_in_path(supprimer_timestamp($script))) { |
|
| 62 | - $script = timestamp($script); |
|
| 63 | - $x .= "\n<script src=\"$script\" type=\"text/javascript\"></script>\n"; |
|
| 64 | - } |
|
| 65 | - } |
|
| 48 | + $x = ''; |
|
| 49 | + $jquery_plugins = pipeline('jquery_plugins', |
|
| 50 | + array( |
|
| 51 | + 'javascript/jquery.js', |
|
| 52 | + 'javascript/jquery-migrate-3.0.1.js', |
|
| 53 | + 'javascript/jquery.form.js', |
|
| 54 | + 'javascript/jquery.autosave.js', |
|
| 55 | + 'javascript/jquery.placeholder-label.js', |
|
| 56 | + 'javascript/ajaxCallback.js', |
|
| 57 | + 'javascript/js.cookie.js', |
|
| 58 | + 'javascript/jquery.cookie.js' |
|
| 59 | + )); |
|
| 60 | + foreach (array_unique($jquery_plugins) as $script) { |
|
| 61 | + if ($script = find_in_path(supprimer_timestamp($script))) { |
|
| 62 | + $script = timestamp($script); |
|
| 63 | + $x .= "\n<script src=\"$script\" type=\"text/javascript\"></script>\n"; |
|
| 64 | + } |
|
| 65 | + } |
|
| 66 | 66 | |
| 67 | - $texte = $x . $texte; |
|
| 67 | + $texte = $x . $texte; |
|
| 68 | 68 | |
| 69 | - return $texte; |
|
| 69 | + return $texte; |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | |
@@ -85,27 +85,27 @@ discard block |
||
| 85 | 85 | * @return string Contenu de la page envoyée au navigateur |
| 86 | 86 | **/ |
| 87 | 87 | function f_surligne($texte) { |
| 88 | - if (!$GLOBALS['html']) { |
|
| 89 | - return $texte; |
|
| 90 | - } |
|
| 91 | - $rech = _request('var_recherche'); |
|
| 92 | - if (!$rech |
|
| 93 | - and (!defined('_SURLIGNE_RECHERCHE_REFERERS') |
|
| 94 | - or !_SURLIGNE_RECHERCHE_REFERERS |
|
| 95 | - or !isset($_SERVER['HTTP_REFERER'])) |
|
| 96 | - ) { |
|
| 97 | - return $texte; |
|
| 98 | - } |
|
| 99 | - include_spip('inc/surligne'); |
|
| 88 | + if (!$GLOBALS['html']) { |
|
| 89 | + return $texte; |
|
| 90 | + } |
|
| 91 | + $rech = _request('var_recherche'); |
|
| 92 | + if (!$rech |
|
| 93 | + and (!defined('_SURLIGNE_RECHERCHE_REFERERS') |
|
| 94 | + or !_SURLIGNE_RECHERCHE_REFERERS |
|
| 95 | + or !isset($_SERVER['HTTP_REFERER'])) |
|
| 96 | + ) { |
|
| 97 | + return $texte; |
|
| 98 | + } |
|
| 99 | + include_spip('inc/surligne'); |
|
| 100 | 100 | |
| 101 | - if (isset($_SERVER['HTTP_REFERER'])) { |
|
| 102 | - $_SERVER['HTTP_REFERER'] = preg_replace(',[^\w\,/#&;-]+,', ' ', $_SERVER['HTTP_REFERER']); |
|
| 103 | - } |
|
| 104 | - if ($rech){ |
|
| 105 | - $rech = preg_replace(',[^\w\,/#&;-]+,', ' ', $rech); |
|
| 106 | - } |
|
| 101 | + if (isset($_SERVER['HTTP_REFERER'])) { |
|
| 102 | + $_SERVER['HTTP_REFERER'] = preg_replace(',[^\w\,/#&;-]+,', ' ', $_SERVER['HTTP_REFERER']); |
|
| 103 | + } |
|
| 104 | + if ($rech){ |
|
| 105 | + $rech = preg_replace(',[^\w\,/#&;-]+,', ' ', $rech); |
|
| 106 | + } |
|
| 107 | 107 | |
| 108 | - return surligner_mots($texte, $rech); |
|
| 108 | + return surligner_mots($texte, $rech); |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | /** |
@@ -122,32 +122,32 @@ discard block |
||
| 122 | 122 | * @return string Contenu de la page envoyée au navigateur |
| 123 | 123 | **/ |
| 124 | 124 | function f_tidy($texte) { |
| 125 | - /** |
|
| 126 | - * Indentation à faire ? |
|
| 127 | - * |
|
| 128 | - * - true : actif. |
|
| 129 | - * - false par défaut. |
|
| 130 | - */ |
|
| 125 | + /** |
|
| 126 | + * Indentation à faire ? |
|
| 127 | + * |
|
| 128 | + * - true : actif. |
|
| 129 | + * - false par défaut. |
|
| 130 | + */ |
|
| 131 | 131 | |
| 132 | - if ($GLOBALS['xhtml'] # tidy demande |
|
| 133 | - and $GLOBALS['html'] # verifie que la page avait l'entete text/html |
|
| 134 | - and strlen($texte) |
|
| 135 | - and !headers_sent() |
|
| 136 | - ) { |
|
| 137 | - # Compatibilite ascendante |
|
| 138 | - if (!is_string($GLOBALS['xhtml'])) { |
|
| 139 | - $GLOBALS['xhtml'] = 'tidy'; |
|
| 140 | - } |
|
| 132 | + if ($GLOBALS['xhtml'] # tidy demande |
|
| 133 | + and $GLOBALS['html'] # verifie que la page avait l'entete text/html |
|
| 134 | + and strlen($texte) |
|
| 135 | + and !headers_sent() |
|
| 136 | + ) { |
|
| 137 | + # Compatibilite ascendante |
|
| 138 | + if (!is_string($GLOBALS['xhtml'])) { |
|
| 139 | + $GLOBALS['xhtml'] = 'tidy'; |
|
| 140 | + } |
|
| 141 | 141 | |
| 142 | - if (!$f = charger_fonction($GLOBALS['xhtml'], 'inc', true)) { |
|
| 143 | - spip_log("tidy absent, l'indenteur SPIP le remplace"); |
|
| 144 | - $f = charger_fonction('sax', 'xml'); |
|
| 145 | - } |
|
| 142 | + if (!$f = charger_fonction($GLOBALS['xhtml'], 'inc', true)) { |
|
| 143 | + spip_log("tidy absent, l'indenteur SPIP le remplace"); |
|
| 144 | + $f = charger_fonction('sax', 'xml'); |
|
| 145 | + } |
|
| 146 | 146 | |
| 147 | - return $f($texte); |
|
| 148 | - } |
|
| 147 | + return $f($texte); |
|
| 148 | + } |
|
| 149 | 149 | |
| 150 | - return $texte; |
|
| 150 | + return $texte; |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | |
@@ -166,21 +166,21 @@ discard block |
||
| 166 | 166 | * @return string Contenu de la page envoyée au navigateur |
| 167 | 167 | **/ |
| 168 | 168 | function f_insert_head($texte) { |
| 169 | - if (!$GLOBALS['html']) { |
|
| 170 | - return $texte; |
|
| 171 | - } |
|
| 172 | - include_spip('public/admin'); // pour strripos |
|
| 169 | + if (!$GLOBALS['html']) { |
|
| 170 | + return $texte; |
|
| 171 | + } |
|
| 172 | + include_spip('public/admin'); // pour strripos |
|
| 173 | 173 | |
| 174 | - ($pos = stripos($texte, '</head>')) |
|
| 175 | - || ($pos = stripos($texte, '<body>')) |
|
| 176 | - || ($pos = 0); |
|
| 174 | + ($pos = stripos($texte, '</head>')) |
|
| 175 | + || ($pos = stripos($texte, '<body>')) |
|
| 176 | + || ($pos = 0); |
|
| 177 | 177 | |
| 178 | - if (false === strpos(substr($texte, 0, $pos), '<!-- insert_head -->')) { |
|
| 179 | - $insert = "\n" . pipeline('insert_head', '<!-- f_insert_head -->') . "\n"; |
|
| 180 | - $texte = substr_replace($texte, $insert, $pos, 0); |
|
| 181 | - } |
|
| 178 | + if (false === strpos(substr($texte, 0, $pos), '<!-- insert_head -->')) { |
|
| 179 | + $insert = "\n" . pipeline('insert_head', '<!-- f_insert_head -->') . "\n"; |
|
| 180 | + $texte = substr_replace($texte, $insert, $pos, 0); |
|
| 181 | + } |
|
| 182 | 182 | |
| 183 | - return $texte; |
|
| 183 | + return $texte; |
|
| 184 | 184 | } |
| 185 | 185 | |
| 186 | 186 | |
@@ -196,28 +196,28 @@ discard block |
||
| 196 | 196 | * @return string Contenu de la page envoyée au navigateur |
| 197 | 197 | **/ |
| 198 | 198 | function f_admin($texte) { |
| 199 | - if (defined('_VAR_PREVIEW') and _VAR_PREVIEW and $GLOBALS['html']) { |
|
| 200 | - include_spip('inc/filtres'); // pour http_img_pack |
|
| 201 | - $x = "<div class='spip-previsu' " |
|
| 202 | - . http_style_background('preview-32.png', '', 32) |
|
| 203 | - . ">" |
|
| 204 | - . _T('previsualisation') |
|
| 205 | - . "</div>"; |
|
| 206 | - if (!$pos = stripos($texte, '</body>')) { |
|
| 207 | - $pos = strlen($texte); |
|
| 208 | - } |
|
| 209 | - $texte = substr_replace($texte, $x, $pos, 0); |
|
| 210 | - } |
|
| 199 | + if (defined('_VAR_PREVIEW') and _VAR_PREVIEW and $GLOBALS['html']) { |
|
| 200 | + include_spip('inc/filtres'); // pour http_img_pack |
|
| 201 | + $x = "<div class='spip-previsu' " |
|
| 202 | + . http_style_background('preview-32.png', '', 32) |
|
| 203 | + . ">" |
|
| 204 | + . _T('previsualisation') |
|
| 205 | + . "</div>"; |
|
| 206 | + if (!$pos = stripos($texte, '</body>')) { |
|
| 207 | + $pos = strlen($texte); |
|
| 208 | + } |
|
| 209 | + $texte = substr_replace($texte, $x, $pos, 0); |
|
| 210 | + } |
|
| 211 | 211 | |
| 212 | - if (isset($GLOBALS['affiche_boutons_admin']) and $GLOBALS['affiche_boutons_admin']) { |
|
| 213 | - include_spip('public/admin'); |
|
| 214 | - $texte = affiche_boutons_admin($texte); |
|
| 215 | - } |
|
| 216 | - if (_request('var_mode') == 'noajax') { |
|
| 217 | - $texte = preg_replace(',(class=[\'"][^\'"]*)ajax([^\'"]*[\'"]),Uims', "\\1\\2", $texte); |
|
| 218 | - } |
|
| 212 | + if (isset($GLOBALS['affiche_boutons_admin']) and $GLOBALS['affiche_boutons_admin']) { |
|
| 213 | + include_spip('public/admin'); |
|
| 214 | + $texte = affiche_boutons_admin($texte); |
|
| 215 | + } |
|
| 216 | + if (_request('var_mode') == 'noajax') { |
|
| 217 | + $texte = preg_replace(',(class=[\'"][^\'"]*)ajax([^\'"]*[\'"]),Uims', "\\1\\2", $texte); |
|
| 218 | + } |
|
| 219 | 219 | |
| 220 | - return $texte; |
|
| 220 | + return $texte; |
|
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | /** |
@@ -235,11 +235,11 @@ discard block |
||
| 235 | 235 | * @return array $flux Description et contenu de l'inclusion |
| 236 | 236 | **/ |
| 237 | 237 | function f_recuperer_fond($flux) { |
| 238 | - if (!test_espace_prive()) { |
|
| 239 | - return $flux; |
|
| 240 | - } |
|
| 238 | + if (!test_espace_prive()) { |
|
| 239 | + return $flux; |
|
| 240 | + } |
|
| 241 | 241 | |
| 242 | - return f_afficher_blocs_ecrire($flux); |
|
| 242 | + return f_afficher_blocs_ecrire($flux); |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | /** |
@@ -253,29 +253,29 @@ discard block |
||
| 253 | 253 | * @return string Contenu de la page envoyée au navigateur |
| 254 | 254 | */ |
| 255 | 255 | function f_queue($texte) { |
| 256 | - // eviter une inclusion si rien a faire |
|
| 257 | - if (_request('action') == 'cron' |
|
| 258 | - or queue_sleep_time_to_next_job() > 0 |
|
| 259 | - or defined('_DEBUG_BLOCK_QUEUE') |
|
| 260 | - ) { |
|
| 261 | - return $texte; |
|
| 262 | - } |
|
| 256 | + // eviter une inclusion si rien a faire |
|
| 257 | + if (_request('action') == 'cron' |
|
| 258 | + or queue_sleep_time_to_next_job() > 0 |
|
| 259 | + or defined('_DEBUG_BLOCK_QUEUE') |
|
| 260 | + ) { |
|
| 261 | + return $texte; |
|
| 262 | + } |
|
| 263 | 263 | |
| 264 | - include_spip('inc/queue'); |
|
| 265 | - $code = queue_affichage_cron(); |
|
| 264 | + include_spip('inc/queue'); |
|
| 265 | + $code = queue_affichage_cron(); |
|
| 266 | 266 | |
| 267 | - // si rien a afficher |
|
| 268 | - // ou si on est pas dans une page html, on ne sait rien faire de mieux |
|
| 269 | - if (!$code or !isset($GLOBALS['html']) or !$GLOBALS['html']) { |
|
| 270 | - return $texte; |
|
| 271 | - } |
|
| 267 | + // si rien a afficher |
|
| 268 | + // ou si on est pas dans une page html, on ne sait rien faire de mieux |
|
| 269 | + if (!$code or !isset($GLOBALS['html']) or !$GLOBALS['html']) { |
|
| 270 | + return $texte; |
|
| 271 | + } |
|
| 272 | 272 | |
| 273 | - // inserer avant le </body> fermant si on peut, a la fin de la page sinon |
|
| 274 | - if (($p = strpos($texte, '</body>')) !== false) { |
|
| 275 | - $texte = substr($texte, 0, $p) . $code . substr($texte, $p); |
|
| 276 | - } else { |
|
| 277 | - $texte .= $code; |
|
| 278 | - } |
|
| 273 | + // inserer avant le </body> fermant si on peut, a la fin de la page sinon |
|
| 274 | + if (($p = strpos($texte, '</body>')) !== false) { |
|
| 275 | + $texte = substr($texte, 0, $p) . $code . substr($texte, $p); |
|
| 276 | + } else { |
|
| 277 | + $texte .= $code; |
|
| 278 | + } |
|
| 279 | 279 | |
| 280 | - return $texte; |
|
| 280 | + return $texte; |
|
| 281 | 281 | } |