@@ -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_fichiers_fonctions(); // inclure les fichiers fonctions |
|
| 46 | - return chercher_filtre($fonc, $default); |
|
| 45 | + include_fichiers_fonctions(); // inclure les fichiers fonctions |
|
| 46 | + return chercher_filtre($fonc, $default); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
@@ -75,38 +75,38 @@ 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 | - |
|
| 96 | - include_fichiers_fonctions(); |
|
| 97 | - foreach (array('filtre_' . $fonc, 'filtre_' . $fonc . '_dist', $fonc) as $f) { |
|
| 98 | - trouver_filtre_matrice($f); // charge des fichiers spécifiques éventuels |
|
| 99 | - // fonction ou name\space\fonction |
|
| 100 | - if (is_callable($f)) { |
|
| 101 | - return $f; |
|
| 102 | - } |
|
| 103 | - // méthode statique d'une classe Classe::methode ou name\space\Classe::methode |
|
| 104 | - elseif (false === strpos($f, '::') and is_callable(array($f))) { |
|
| 105 | - return $f; |
|
| 106 | - } |
|
| 107 | - } |
|
| 108 | - |
|
| 109 | - 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 | + |
|
| 96 | + include_fichiers_fonctions(); |
|
| 97 | + foreach (array('filtre_' . $fonc, 'filtre_' . $fonc . '_dist', $fonc) as $f) { |
|
| 98 | + trouver_filtre_matrice($f); // charge des fichiers spécifiques éventuels |
|
| 99 | + // fonction ou name\space\fonction |
|
| 100 | + if (is_callable($f)) { |
|
| 101 | + return $f; |
|
| 102 | + } |
|
| 103 | + // méthode statique d'une classe Classe::methode ou name\space\Classe::methode |
|
| 104 | + elseif (false === strpos($f, '::') and is_callable(array($f))) { |
|
| 105 | + return $f; |
|
| 106 | + } |
|
| 107 | + } |
|
| 108 | + |
|
| 109 | + return $default; |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | /** |
@@ -150,8 +150,8 @@ discard block |
||
| 150 | 150 | * Chaîne vide sinon. |
| 151 | 151 | **/ |
| 152 | 152 | function appliquer_filtre($arg, $filtre) { |
| 153 | - $args = func_get_args(); |
|
| 154 | - return appliquer_filtre_sinon($arg, $filtre, $args, ''); |
|
| 153 | + $args = func_get_args(); |
|
| 154 | + return appliquer_filtre_sinon($arg, $filtre, $args, ''); |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | /** |
@@ -176,8 +176,8 @@ discard block |
||
| 176 | 176 | * Texte d'origine sinon |
| 177 | 177 | **/ |
| 178 | 178 | function appliquer_si_filtre($arg, $filtre) { |
| 179 | - $args = func_get_args(); |
|
| 180 | - return appliquer_filtre_sinon($arg, $filtre, $args, $arg); |
|
| 179 | + $args = func_get_args(); |
|
| 180 | + return appliquer_filtre_sinon($arg, $filtre, $args, $arg); |
|
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | /** |
@@ -193,12 +193,12 @@ discard block |
||
| 193 | 193 | * Version de SPIP |
| 194 | 194 | **/ |
| 195 | 195 | function spip_version() { |
| 196 | - $version = $GLOBALS['spip_version_affichee']; |
|
| 197 | - if ($vcs_version = version_vcs_courante(_DIR_RACINE)) { |
|
| 198 | - $version .= " $vcs_version"; |
|
| 199 | - } |
|
| 196 | + $version = $GLOBALS['spip_version_affichee']; |
|
| 197 | + if ($vcs_version = version_vcs_courante(_DIR_RACINE)) { |
|
| 198 | + $version .= " $vcs_version"; |
|
| 199 | + } |
|
| 200 | 200 | |
| 201 | - return $version; |
|
| 201 | + return $version; |
|
| 202 | 202 | } |
| 203 | 203 | |
| 204 | 204 | /** |
@@ -211,19 +211,19 @@ discard block |
||
| 211 | 211 | * - string|null si $raw = false |
| 212 | 212 | */ |
| 213 | 213 | function version_vcs_courante($dir, $raw = false) { |
| 214 | - $desc = decrire_version_git($dir); |
|
| 215 | - if ($desc === null) { |
|
| 216 | - $desc = decrire_version_svn($dir); |
|
| 217 | - } |
|
| 218 | - if ($desc === null or $raw) { |
|
| 219 | - return $desc; |
|
| 220 | - } |
|
| 221 | - // affichage "GIT [master: abcdef]" |
|
| 222 | - $commit = isset($desc['commit_short']) ? $desc['commit_short'] : $desc['commit']; |
|
| 223 | - if ($desc['branch']) { |
|
| 224 | - $commit = $desc['branch'] . ': ' . $commit; |
|
| 225 | - } |
|
| 226 | - return "{$desc['vcs']} [$commit]"; |
|
| 214 | + $desc = decrire_version_git($dir); |
|
| 215 | + if ($desc === null) { |
|
| 216 | + $desc = decrire_version_svn($dir); |
|
| 217 | + } |
|
| 218 | + if ($desc === null or $raw) { |
|
| 219 | + return $desc; |
|
| 220 | + } |
|
| 221 | + // affichage "GIT [master: abcdef]" |
|
| 222 | + $commit = isset($desc['commit_short']) ? $desc['commit_short'] : $desc['commit']; |
|
| 223 | + if ($desc['branch']) { |
|
| 224 | + $commit = $desc['branch'] . ': ' . $commit; |
|
| 225 | + } |
|
| 226 | + return "{$desc['vcs']} [$commit]"; |
|
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | /** |
@@ -235,24 +235,24 @@ discard block |
||
| 235 | 235 | * array ['branch' => xx, 'commit' => yy] sinon. |
| 236 | 236 | **/ |
| 237 | 237 | function decrire_version_git($dir) { |
| 238 | - if (!$dir) { |
|
| 239 | - $dir = '.'; |
|
| 240 | - } |
|
| 238 | + if (!$dir) { |
|
| 239 | + $dir = '.'; |
|
| 240 | + } |
|
| 241 | 241 | |
| 242 | - // version installee par GIT |
|
| 243 | - if (lire_fichier($dir . '/.git/HEAD', $c)) { |
|
| 244 | - $currentHead = trim(substr($c, 4)); |
|
| 245 | - if (lire_fichier($dir . '/.git/' . $currentHead, $hash)) { |
|
| 246 | - return [ |
|
| 247 | - 'vcs' => 'GIT', |
|
| 248 | - 'branch' => basename($currentHead), |
|
| 249 | - 'commit' => trim($hash), |
|
| 250 | - 'commit_short' => substr(trim($hash), 0, 8), |
|
| 251 | - ]; |
|
| 252 | - } |
|
| 253 | - } |
|
| 242 | + // version installee par GIT |
|
| 243 | + if (lire_fichier($dir . '/.git/HEAD', $c)) { |
|
| 244 | + $currentHead = trim(substr($c, 4)); |
|
| 245 | + if (lire_fichier($dir . '/.git/' . $currentHead, $hash)) { |
|
| 246 | + return [ |
|
| 247 | + 'vcs' => 'GIT', |
|
| 248 | + 'branch' => basename($currentHead), |
|
| 249 | + 'commit' => trim($hash), |
|
| 250 | + 'commit_short' => substr(trim($hash), 0, 8), |
|
| 251 | + ]; |
|
| 252 | + } |
|
| 253 | + } |
|
| 254 | 254 | |
| 255 | - return null; |
|
| 255 | + return null; |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | 258 | |
@@ -265,25 +265,25 @@ discard block |
||
| 265 | 265 | * array ['commit' => yy, 'date' => xx, 'author' => xx] sinon. |
| 266 | 266 | **/ |
| 267 | 267 | function decrire_version_svn($dir) { |
| 268 | - if (!$dir) { |
|
| 269 | - $dir = '.'; |
|
| 270 | - } |
|
| 271 | - // version installee par SVN |
|
| 272 | - if (file_exists($dir . '/.svn/wc.db') && class_exists('SQLite3')) { |
|
| 273 | - $db = new SQLite3($dir . '/.svn/wc.db'); |
|
| 274 | - $result = $db->query('SELECT changed_revision FROM nodes WHERE local_relpath = "" LIMIT 1'); |
|
| 275 | - if ($result) { |
|
| 276 | - $row = $result->fetchArray(); |
|
| 277 | - if ($row['changed_revision'] != "") { |
|
| 278 | - return [ |
|
| 279 | - 'vcs' => 'SVN', |
|
| 280 | - 'branch' => '', |
|
| 281 | - 'commit' => $row['changed_revision'], |
|
| 282 | - ]; |
|
| 283 | - } |
|
| 284 | - } |
|
| 285 | - } |
|
| 286 | - return null; |
|
| 268 | + if (!$dir) { |
|
| 269 | + $dir = '.'; |
|
| 270 | + } |
|
| 271 | + // version installee par SVN |
|
| 272 | + if (file_exists($dir . '/.svn/wc.db') && class_exists('SQLite3')) { |
|
| 273 | + $db = new SQLite3($dir . '/.svn/wc.db'); |
|
| 274 | + $result = $db->query('SELECT changed_revision FROM nodes WHERE local_relpath = "" LIMIT 1'); |
|
| 275 | + if ($result) { |
|
| 276 | + $row = $result->fetchArray(); |
|
| 277 | + if ($row['changed_revision'] != "") { |
|
| 278 | + return [ |
|
| 279 | + 'vcs' => 'SVN', |
|
| 280 | + 'branch' => '', |
|
| 281 | + 'commit' => $row['changed_revision'], |
|
| 282 | + ]; |
|
| 283 | + } |
|
| 284 | + } |
|
| 285 | + } |
|
| 286 | + return null; |
|
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | // La matrice est necessaire pour ne filtrer _que_ des fonctions definies dans filtres_images |
@@ -330,18 +330,18 @@ discard block |
||
| 330 | 330 | * Code HTML retourné par le filtre |
| 331 | 331 | **/ |
| 332 | 332 | function filtrer($filtre) { |
| 333 | - $tous = func_get_args(); |
|
| 334 | - if (trouver_filtre_matrice($filtre) and substr($filtre, 0, 6) == 'image_') { |
|
| 335 | - return image_filtrer($tous); |
|
| 336 | - } elseif ($f = chercher_filtre($filtre)) { |
|
| 337 | - array_shift($tous); |
|
| 338 | - return call_user_func_array($f, $tous); |
|
| 339 | - } else { |
|
| 340 | - // le filtre n'existe pas, on provoque une erreur |
|
| 341 | - $msg = array('zbug_erreur_filtre', array('filtre' => texte_script($filtre))); |
|
| 342 | - erreur_squelette($msg); |
|
| 343 | - return ''; |
|
| 344 | - } |
|
| 333 | + $tous = func_get_args(); |
|
| 334 | + if (trouver_filtre_matrice($filtre) and substr($filtre, 0, 6) == 'image_') { |
|
| 335 | + return image_filtrer($tous); |
|
| 336 | + } elseif ($f = chercher_filtre($filtre)) { |
|
| 337 | + array_shift($tous); |
|
| 338 | + return call_user_func_array($f, $tous); |
|
| 339 | + } else { |
|
| 340 | + // le filtre n'existe pas, on provoque une erreur |
|
| 341 | + $msg = array('zbug_erreur_filtre', array('filtre' => texte_script($filtre))); |
|
| 342 | + erreur_squelette($msg); |
|
| 343 | + return ''; |
|
| 344 | + } |
|
| 345 | 345 | } |
| 346 | 346 | |
| 347 | 347 | /** |
@@ -358,11 +358,11 @@ discard block |
||
| 358 | 358 | * @return bool true si on trouve le filtre dans la matrice, false sinon. |
| 359 | 359 | */ |
| 360 | 360 | function trouver_filtre_matrice($filtre) { |
| 361 | - if (isset($GLOBALS['spip_matrice'][$filtre]) and is_string($f = $GLOBALS['spip_matrice'][$filtre])) { |
|
| 362 | - find_in_path($f, '', true); |
|
| 363 | - $GLOBALS['spip_matrice'][$filtre] = true; |
|
| 364 | - } |
|
| 365 | - return !empty($GLOBALS['spip_matrice'][$filtre]); |
|
| 361 | + if (isset($GLOBALS['spip_matrice'][$filtre]) and is_string($f = $GLOBALS['spip_matrice'][$filtre])) { |
|
| 362 | + find_in_path($f, '', true); |
|
| 363 | + $GLOBALS['spip_matrice'][$filtre] = true; |
|
| 364 | + } |
|
| 365 | + return !empty($GLOBALS['spip_matrice'][$filtre]); |
|
| 366 | 366 | } |
| 367 | 367 | |
| 368 | 368 | |
@@ -390,8 +390,8 @@ discard block |
||
| 390 | 390 | * @return mixed |
| 391 | 391 | */ |
| 392 | 392 | function filtre_set(&$Pile, $val, $key, $continue = null) { |
| 393 | - $Pile['vars'][$key] = $val; |
|
| 394 | - return $continue ? $val : ''; |
|
| 393 | + $Pile['vars'][$key] = $val; |
|
| 394 | + return $continue ? $val : ''; |
|
| 395 | 395 | } |
| 396 | 396 | |
| 397 | 397 | /** |
@@ -417,8 +417,8 @@ discard block |
||
| 417 | 417 | * @return string|mixed Retourne `$val` si `$continue` présent, sinon ''. |
| 418 | 418 | */ |
| 419 | 419 | function filtre_setenv(&$Pile, $val, $key, $continue = null) { |
| 420 | - $Pile[0][$key] = $val; |
|
| 421 | - return $continue ? $val : ''; |
|
| 420 | + $Pile[0][$key] = $val; |
|
| 421 | + return $continue ? $val : ''; |
|
| 422 | 422 | } |
| 423 | 423 | |
| 424 | 424 | /** |
@@ -427,8 +427,8 @@ discard block |
||
| 427 | 427 | * @return string |
| 428 | 428 | */ |
| 429 | 429 | function filtre_sanitize_env(&$Pile, $keys) { |
| 430 | - $Pile[0] = spip_sanitize_from_request($Pile[0], $keys); |
|
| 431 | - return ''; |
|
| 430 | + $Pile[0] = spip_sanitize_from_request($Pile[0], $keys); |
|
| 431 | + return ''; |
|
| 432 | 432 | } |
| 433 | 433 | |
| 434 | 434 | |
@@ -451,18 +451,18 @@ discard block |
||
| 451 | 451 | * @return mixed Retourne la valeur (sans la modifier). |
| 452 | 452 | */ |
| 453 | 453 | function filtre_debug($val, $key = null) { |
| 454 | - $debug = ( |
|
| 455 | - is_null($key) ? '' : (var_export($key, true) . " = ") |
|
| 456 | - ) . var_export($val, true); |
|
| 454 | + $debug = ( |
|
| 455 | + is_null($key) ? '' : (var_export($key, true) . " = ") |
|
| 456 | + ) . var_export($val, true); |
|
| 457 | 457 | |
| 458 | - include_spip('inc/autoriser'); |
|
| 459 | - if (autoriser('webmestre')) { |
|
| 460 | - echo "<div class='spip_debug'>\n", $debug, "</div>\n"; |
|
| 461 | - } |
|
| 458 | + include_spip('inc/autoriser'); |
|
| 459 | + if (autoriser('webmestre')) { |
|
| 460 | + echo "<div class='spip_debug'>\n", $debug, "</div>\n"; |
|
| 461 | + } |
|
| 462 | 462 | |
| 463 | - spip_log($debug, 'debug'); |
|
| 463 | + spip_log($debug, 'debug'); |
|
| 464 | 464 | |
| 465 | - return $val; |
|
| 465 | + return $val; |
|
| 466 | 466 | } |
| 467 | 467 | |
| 468 | 468 | |
@@ -490,82 +490,82 @@ discard block |
||
| 490 | 490 | * Texte qui a reçu les filtres |
| 491 | 491 | **/ |
| 492 | 492 | function image_filtrer($args) { |
| 493 | - $filtre = array_shift($args); # enlever $filtre |
|
| 494 | - $texte = array_shift($args); |
|
| 495 | - if (!strlen($texte)) { |
|
| 496 | - return; |
|
| 497 | - } |
|
| 498 | - find_in_path('filtres_images_mini.php', 'inc/', true); |
|
| 499 | - statut_effacer_images_temporaires(true); // activer la suppression des images temporaires car le compilo finit la chaine par un image_graver |
|
| 500 | - // Cas du nom de fichier local |
|
| 501 | - $is_file = trim($texte); |
|
| 502 | - if (strpos(substr($is_file, strlen(_DIR_RACINE)), '..') !== false |
|
| 503 | - or strpbrk($is_file, "<>\n\r\t") !== false |
|
| 504 | - or strpos($is_file, '/') === 0 |
|
| 505 | - ) { |
|
| 506 | - $is_file = false; |
|
| 507 | - } |
|
| 508 | - if ($is_file) { |
|
| 509 | - $is_local_file = function($path) { |
|
| 510 | - if (strpos($path, "?") !== false) { |
|
| 511 | - $path = supprimer_timestamp($path); |
|
| 512 | - // remove ?24px added by find_in_theme on .svg files |
|
| 513 | - $path = preg_replace(",\?[[:digit:]]+(px)$,", "", $path); |
|
| 514 | - } |
|
| 515 | - return file_exists($path); |
|
| 516 | - }; |
|
| 517 | - if ($is_local_file($is_file) or tester_url_absolue($is_file)) { |
|
| 518 | - array_unshift($args, "<img src='$is_file' />"); |
|
| 519 | - $res = call_user_func_array($filtre, $args); |
|
| 520 | - statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo |
|
| 521 | - return $res; |
|
| 522 | - } |
|
| 523 | - } |
|
| 524 | - |
|
| 525 | - // Cas general : trier toutes les images, avec eventuellement leur <span> |
|
| 526 | - if (preg_match_all( |
|
| 527 | - ',(<([a-z]+) [^<>]*spip_documents[^<>]*>)?\s*(<img\s.*>),UimsS', |
|
| 528 | - $texte, $tags, PREG_SET_ORDER)) { |
|
| 529 | - foreach ($tags as $tag) { |
|
| 530 | - $class = extraire_attribut($tag[3], 'class'); |
|
| 531 | - if (!$class or |
|
| 532 | - (strpos($class, 'filtre_inactif') === false |
|
| 533 | - // compat historique a virer en 3.2 |
|
| 534 | - and strpos($class, 'no_image_filtrer') === false) |
|
| 535 | - ) { |
|
| 536 | - array_unshift($args, $tag[3]); |
|
| 537 | - if ($reduit = call_user_func_array($filtre, $args)) { |
|
| 538 | - // En cas de span spip_documents, modifier le style=...width: |
|
| 539 | - if ($tag[1]) { |
|
| 540 | - $w = extraire_attribut($reduit, 'width'); |
|
| 541 | - if (!$w and preg_match(",width:\s*(\d+)px,S", extraire_attribut($reduit, 'style'), $regs)) { |
|
| 542 | - $w = $regs[1]; |
|
| 543 | - } |
|
| 544 | - if ($w and ($style = extraire_attribut($tag[1], 'style'))) { |
|
| 545 | - $style = preg_replace(",width:\s*\d+px,S", "width:${w}px", $style); |
|
| 546 | - $replace = inserer_attribut($tag[1], 'style', $style); |
|
| 547 | - $texte = str_replace($tag[1], $replace, $texte); |
|
| 548 | - } |
|
| 549 | - } |
|
| 550 | - // traiter aussi un eventuel mouseover |
|
| 551 | - if ($mouseover = extraire_attribut($reduit, 'onmouseover')) { |
|
| 552 | - if (preg_match(",this[.]src=['\"]([^'\"]+)['\"],ims", $mouseover, $match)) { |
|
| 553 | - $srcover = $match[1]; |
|
| 554 | - array_shift($args); |
|
| 555 | - array_unshift($args, "<img src='" . $match[1] . "' />"); |
|
| 556 | - $srcover_filter = call_user_func_array($filtre, $args); |
|
| 557 | - $srcover_filter = extraire_attribut($srcover_filter, 'src'); |
|
| 558 | - $reduit = str_replace($srcover, $srcover_filter, $reduit); |
|
| 559 | - } |
|
| 560 | - } |
|
| 561 | - $texte = str_replace($tag[3], $reduit, $texte); |
|
| 562 | - } |
|
| 563 | - array_shift($args); |
|
| 564 | - } |
|
| 565 | - } |
|
| 566 | - } |
|
| 567 | - statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo |
|
| 568 | - return $texte; |
|
| 493 | + $filtre = array_shift($args); # enlever $filtre |
|
| 494 | + $texte = array_shift($args); |
|
| 495 | + if (!strlen($texte)) { |
|
| 496 | + return; |
|
| 497 | + } |
|
| 498 | + find_in_path('filtres_images_mini.php', 'inc/', true); |
|
| 499 | + statut_effacer_images_temporaires(true); // activer la suppression des images temporaires car le compilo finit la chaine par un image_graver |
|
| 500 | + // Cas du nom de fichier local |
|
| 501 | + $is_file = trim($texte); |
|
| 502 | + if (strpos(substr($is_file, strlen(_DIR_RACINE)), '..') !== false |
|
| 503 | + or strpbrk($is_file, "<>\n\r\t") !== false |
|
| 504 | + or strpos($is_file, '/') === 0 |
|
| 505 | + ) { |
|
| 506 | + $is_file = false; |
|
| 507 | + } |
|
| 508 | + if ($is_file) { |
|
| 509 | + $is_local_file = function($path) { |
|
| 510 | + if (strpos($path, "?") !== false) { |
|
| 511 | + $path = supprimer_timestamp($path); |
|
| 512 | + // remove ?24px added by find_in_theme on .svg files |
|
| 513 | + $path = preg_replace(",\?[[:digit:]]+(px)$,", "", $path); |
|
| 514 | + } |
|
| 515 | + return file_exists($path); |
|
| 516 | + }; |
|
| 517 | + if ($is_local_file($is_file) or tester_url_absolue($is_file)) { |
|
| 518 | + array_unshift($args, "<img src='$is_file' />"); |
|
| 519 | + $res = call_user_func_array($filtre, $args); |
|
| 520 | + statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo |
|
| 521 | + return $res; |
|
| 522 | + } |
|
| 523 | + } |
|
| 524 | + |
|
| 525 | + // Cas general : trier toutes les images, avec eventuellement leur <span> |
|
| 526 | + if (preg_match_all( |
|
| 527 | + ',(<([a-z]+) [^<>]*spip_documents[^<>]*>)?\s*(<img\s.*>),UimsS', |
|
| 528 | + $texte, $tags, PREG_SET_ORDER)) { |
|
| 529 | + foreach ($tags as $tag) { |
|
| 530 | + $class = extraire_attribut($tag[3], 'class'); |
|
| 531 | + if (!$class or |
|
| 532 | + (strpos($class, 'filtre_inactif') === false |
|
| 533 | + // compat historique a virer en 3.2 |
|
| 534 | + and strpos($class, 'no_image_filtrer') === false) |
|
| 535 | + ) { |
|
| 536 | + array_unshift($args, $tag[3]); |
|
| 537 | + if ($reduit = call_user_func_array($filtre, $args)) { |
|
| 538 | + // En cas de span spip_documents, modifier le style=...width: |
|
| 539 | + if ($tag[1]) { |
|
| 540 | + $w = extraire_attribut($reduit, 'width'); |
|
| 541 | + if (!$w and preg_match(",width:\s*(\d+)px,S", extraire_attribut($reduit, 'style'), $regs)) { |
|
| 542 | + $w = $regs[1]; |
|
| 543 | + } |
|
| 544 | + if ($w and ($style = extraire_attribut($tag[1], 'style'))) { |
|
| 545 | + $style = preg_replace(",width:\s*\d+px,S", "width:${w}px", $style); |
|
| 546 | + $replace = inserer_attribut($tag[1], 'style', $style); |
|
| 547 | + $texte = str_replace($tag[1], $replace, $texte); |
|
| 548 | + } |
|
| 549 | + } |
|
| 550 | + // traiter aussi un eventuel mouseover |
|
| 551 | + if ($mouseover = extraire_attribut($reduit, 'onmouseover')) { |
|
| 552 | + if (preg_match(",this[.]src=['\"]([^'\"]+)['\"],ims", $mouseover, $match)) { |
|
| 553 | + $srcover = $match[1]; |
|
| 554 | + array_shift($args); |
|
| 555 | + array_unshift($args, "<img src='" . $match[1] . "' />"); |
|
| 556 | + $srcover_filter = call_user_func_array($filtre, $args); |
|
| 557 | + $srcover_filter = extraire_attribut($srcover_filter, 'src'); |
|
| 558 | + $reduit = str_replace($srcover, $srcover_filter, $reduit); |
|
| 559 | + } |
|
| 560 | + } |
|
| 561 | + $texte = str_replace($tag[3], $reduit, $texte); |
|
| 562 | + } |
|
| 563 | + array_shift($args); |
|
| 564 | + } |
|
| 565 | + } |
|
| 566 | + } |
|
| 567 | + statut_effacer_images_temporaires(false); // desactiver pour les appels hors compilo |
|
| 568 | + return $texte; |
|
| 569 | 569 | } |
| 570 | 570 | |
| 571 | 571 | /** |
@@ -580,77 +580,77 @@ discard block |
||
| 580 | 580 | **/ |
| 581 | 581 | function taille_image($img, $force_refresh = false) { |
| 582 | 582 | |
| 583 | - static $largeur_img = array(), $hauteur_img = array(); |
|
| 584 | - $srcWidth = 0; |
|
| 585 | - $srcHeight = 0; |
|
| 586 | - |
|
| 587 | - $src = extraire_attribut($img, 'src'); |
|
| 588 | - |
|
| 589 | - if (!$src) { |
|
| 590 | - $src = $img; |
|
| 591 | - } else { |
|
| 592 | - $srcWidth = extraire_attribut($img, 'width'); |
|
| 593 | - $srcHeight = extraire_attribut($img, 'height'); |
|
| 594 | - } |
|
| 595 | - |
|
| 596 | - // ne jamais operer directement sur une image distante pour des raisons de perfo |
|
| 597 | - // la copie locale a toutes les chances d'etre la ou de resservir |
|
| 598 | - if (tester_url_absolue($src)) { |
|
| 599 | - include_spip('inc/distant'); |
|
| 600 | - $fichier = copie_locale($src); |
|
| 601 | - $src = $fichier ? _DIR_RACINE . $fichier : $src; |
|
| 602 | - } |
|
| 603 | - if (($p = strpos($src, '?')) !== false) { |
|
| 604 | - $src = substr($src, 0, $p); |
|
| 605 | - } |
|
| 606 | - |
|
| 607 | - $srcsize = false; |
|
| 608 | - if (isset($largeur_img[$src]) and !$force_refresh) { |
|
| 609 | - $srcWidth = $largeur_img[$src]; |
|
| 610 | - } |
|
| 611 | - if (isset($hauteur_img[$src]) and !$force_refresh) { |
|
| 612 | - $srcHeight = $hauteur_img[$src]; |
|
| 613 | - } |
|
| 614 | - if (!$srcWidth or !$srcHeight) { |
|
| 615 | - |
|
| 616 | - if (file_exists($src) |
|
| 617 | - and $srcsize = spip_getimagesize($src) |
|
| 618 | - ) { |
|
| 619 | - if (!$srcWidth) { |
|
| 620 | - $largeur_img[$src] = $srcWidth = $srcsize[0]; |
|
| 621 | - } |
|
| 622 | - if (!$srcHeight) { |
|
| 623 | - $hauteur_img[$src] = $srcHeight = $srcsize[1]; |
|
| 624 | - } |
|
| 625 | - } |
|
| 626 | - elseif(strpos($src, "<svg") !== false) { |
|
| 627 | - include_spip('inc/svg'); |
|
| 628 | - if ($attrs = svg_lire_attributs($src)){ |
|
| 629 | - list($width, $height, $viewbox) = svg_getimagesize_from_attr($attrs); |
|
| 630 | - if (!$srcWidth){ |
|
| 631 | - $largeur_img[$src] = $srcWidth = $width; |
|
| 632 | - } |
|
| 633 | - if (!$srcHeight){ |
|
| 634 | - $hauteur_img[$src] = $srcHeight = $height; |
|
| 635 | - } |
|
| 636 | - } |
|
| 637 | - } |
|
| 638 | - // $src peut etre une reference a une image temporaire dont a n'a que le log .src |
|
| 639 | - // on s'y refere, l'image sera reconstruite en temps utile si necessaire |
|
| 640 | - elseif (@file_exists($f = "$src.src") |
|
| 641 | - and lire_fichier($f, $valeurs) |
|
| 642 | - and $valeurs = unserialize($valeurs) |
|
| 643 | - ) { |
|
| 644 | - if (!$srcWidth) { |
|
| 645 | - $largeur_img[$src] = $srcWidth = $valeurs["largeur_dest"]; |
|
| 646 | - } |
|
| 647 | - if (!$srcHeight) { |
|
| 648 | - $hauteur_img[$src] = $srcHeight = $valeurs["hauteur_dest"]; |
|
| 649 | - } |
|
| 650 | - } |
|
| 651 | - } |
|
| 652 | - |
|
| 653 | - return array($srcHeight, $srcWidth); |
|
| 583 | + static $largeur_img = array(), $hauteur_img = array(); |
|
| 584 | + $srcWidth = 0; |
|
| 585 | + $srcHeight = 0; |
|
| 586 | + |
|
| 587 | + $src = extraire_attribut($img, 'src'); |
|
| 588 | + |
|
| 589 | + if (!$src) { |
|
| 590 | + $src = $img; |
|
| 591 | + } else { |
|
| 592 | + $srcWidth = extraire_attribut($img, 'width'); |
|
| 593 | + $srcHeight = extraire_attribut($img, 'height'); |
|
| 594 | + } |
|
| 595 | + |
|
| 596 | + // ne jamais operer directement sur une image distante pour des raisons de perfo |
|
| 597 | + // la copie locale a toutes les chances d'etre la ou de resservir |
|
| 598 | + if (tester_url_absolue($src)) { |
|
| 599 | + include_spip('inc/distant'); |
|
| 600 | + $fichier = copie_locale($src); |
|
| 601 | + $src = $fichier ? _DIR_RACINE . $fichier : $src; |
|
| 602 | + } |
|
| 603 | + if (($p = strpos($src, '?')) !== false) { |
|
| 604 | + $src = substr($src, 0, $p); |
|
| 605 | + } |
|
| 606 | + |
|
| 607 | + $srcsize = false; |
|
| 608 | + if (isset($largeur_img[$src]) and !$force_refresh) { |
|
| 609 | + $srcWidth = $largeur_img[$src]; |
|
| 610 | + } |
|
| 611 | + if (isset($hauteur_img[$src]) and !$force_refresh) { |
|
| 612 | + $srcHeight = $hauteur_img[$src]; |
|
| 613 | + } |
|
| 614 | + if (!$srcWidth or !$srcHeight) { |
|
| 615 | + |
|
| 616 | + if (file_exists($src) |
|
| 617 | + and $srcsize = spip_getimagesize($src) |
|
| 618 | + ) { |
|
| 619 | + if (!$srcWidth) { |
|
| 620 | + $largeur_img[$src] = $srcWidth = $srcsize[0]; |
|
| 621 | + } |
|
| 622 | + if (!$srcHeight) { |
|
| 623 | + $hauteur_img[$src] = $srcHeight = $srcsize[1]; |
|
| 624 | + } |
|
| 625 | + } |
|
| 626 | + elseif(strpos($src, "<svg") !== false) { |
|
| 627 | + include_spip('inc/svg'); |
|
| 628 | + if ($attrs = svg_lire_attributs($src)){ |
|
| 629 | + list($width, $height, $viewbox) = svg_getimagesize_from_attr($attrs); |
|
| 630 | + if (!$srcWidth){ |
|
| 631 | + $largeur_img[$src] = $srcWidth = $width; |
|
| 632 | + } |
|
| 633 | + if (!$srcHeight){ |
|
| 634 | + $hauteur_img[$src] = $srcHeight = $height; |
|
| 635 | + } |
|
| 636 | + } |
|
| 637 | + } |
|
| 638 | + // $src peut etre une reference a une image temporaire dont a n'a que le log .src |
|
| 639 | + // on s'y refere, l'image sera reconstruite en temps utile si necessaire |
|
| 640 | + elseif (@file_exists($f = "$src.src") |
|
| 641 | + and lire_fichier($f, $valeurs) |
|
| 642 | + and $valeurs = unserialize($valeurs) |
|
| 643 | + ) { |
|
| 644 | + if (!$srcWidth) { |
|
| 645 | + $largeur_img[$src] = $srcWidth = $valeurs["largeur_dest"]; |
|
| 646 | + } |
|
| 647 | + if (!$srcHeight) { |
|
| 648 | + $hauteur_img[$src] = $srcHeight = $valeurs["hauteur_dest"]; |
|
| 649 | + } |
|
| 650 | + } |
|
| 651 | + } |
|
| 652 | + |
|
| 653 | + return array($srcHeight, $srcWidth); |
|
| 654 | 654 | } |
| 655 | 655 | |
| 656 | 656 | |
@@ -668,12 +668,12 @@ discard block |
||
| 668 | 668 | * Largeur en pixels, NULL ou 0 si aucune image. |
| 669 | 669 | **/ |
| 670 | 670 | function largeur($img) { |
| 671 | - if (!$img) { |
|
| 672 | - return; |
|
| 673 | - } |
|
| 674 | - list($h, $l) = taille_image($img); |
|
| 671 | + if (!$img) { |
|
| 672 | + return; |
|
| 673 | + } |
|
| 674 | + list($h, $l) = taille_image($img); |
|
| 675 | 675 | |
| 676 | - return $l; |
|
| 676 | + return $l; |
|
| 677 | 677 | } |
| 678 | 678 | |
| 679 | 679 | /** |
@@ -690,12 +690,12 @@ discard block |
||
| 690 | 690 | * Hauteur en pixels, NULL ou 0 si aucune image. |
| 691 | 691 | **/ |
| 692 | 692 | function hauteur($img) { |
| 693 | - if (!$img) { |
|
| 694 | - return; |
|
| 695 | - } |
|
| 696 | - list($h, $l) = taille_image($img); |
|
| 693 | + if (!$img) { |
|
| 694 | + return; |
|
| 695 | + } |
|
| 696 | + list($h, $l) = taille_image($img); |
|
| 697 | 697 | |
| 698 | - return $h; |
|
| 698 | + return $h; |
|
| 699 | 699 | } |
| 700 | 700 | |
| 701 | 701 | |
@@ -715,11 +715,11 @@ discard block |
||
| 715 | 715 | * @return string |
| 716 | 716 | **/ |
| 717 | 717 | function corriger_entites_html($texte) { |
| 718 | - if (strpos($texte, '&') === false) { |
|
| 719 | - return $texte; |
|
| 720 | - } |
|
| 718 | + if (strpos($texte, '&') === false) { |
|
| 719 | + return $texte; |
|
| 720 | + } |
|
| 721 | 721 | |
| 722 | - return preg_replace(',&(#[0-9][0-9][0-9]+;|amp;),iS', '&\1', $texte); |
|
| 722 | + return preg_replace(',&(#[0-9][0-9][0-9]+;|amp;),iS', '&\1', $texte); |
|
| 723 | 723 | } |
| 724 | 724 | |
| 725 | 725 | /** |
@@ -734,11 +734,11 @@ discard block |
||
| 734 | 734 | * @return string |
| 735 | 735 | **/ |
| 736 | 736 | function corriger_toutes_entites_html($texte) { |
| 737 | - if (strpos($texte, '&') === false) { |
|
| 738 | - return $texte; |
|
| 739 | - } |
|
| 737 | + if (strpos($texte, '&') === false) { |
|
| 738 | + return $texte; |
|
| 739 | + } |
|
| 740 | 740 | |
| 741 | - return preg_replace(',&(#?[a-z0-9]+;),iS', '&\1', $texte); |
|
| 741 | + return preg_replace(',&(#?[a-z0-9]+;),iS', '&\1', $texte); |
|
| 742 | 742 | } |
| 743 | 743 | |
| 744 | 744 | /** |
@@ -748,7 +748,7 @@ discard block |
||
| 748 | 748 | * @return string |
| 749 | 749 | **/ |
| 750 | 750 | function proteger_amp($texte) { |
| 751 | - return str_replace('&', '&', $texte); |
|
| 751 | + return str_replace('&', '&', $texte); |
|
| 752 | 752 | } |
| 753 | 753 | |
| 754 | 754 | |
@@ -779,20 +779,20 @@ discard block |
||
| 779 | 779 | * @return mixed|string |
| 780 | 780 | */ |
| 781 | 781 | function entites_html($texte, $tout = false, $quote = true) { |
| 782 | - if (!is_string($texte) or !$texte |
|
| 783 | - or strpbrk($texte, "&\"'<>") == false |
|
| 784 | - ) { |
|
| 785 | - return $texte; |
|
| 786 | - } |
|
| 787 | - include_spip('inc/texte'); |
|
| 788 | - $flags = ($quote ? ENT_QUOTES : ENT_NOQUOTES); |
|
| 789 | - $flags |= ENT_HTML401; |
|
| 790 | - $texte = spip_htmlspecialchars(echappe_retour(echappe_html($texte, '', true), '', 'proteger_amp'), $flags); |
|
| 791 | - if ($tout) { |
|
| 792 | - return corriger_toutes_entites_html($texte); |
|
| 793 | - } else { |
|
| 794 | - return corriger_entites_html($texte); |
|
| 795 | - } |
|
| 782 | + if (!is_string($texte) or !$texte |
|
| 783 | + or strpbrk($texte, "&\"'<>") == false |
|
| 784 | + ) { |
|
| 785 | + return $texte; |
|
| 786 | + } |
|
| 787 | + include_spip('inc/texte'); |
|
| 788 | + $flags = ($quote ? ENT_QUOTES : ENT_NOQUOTES); |
|
| 789 | + $flags |= ENT_HTML401; |
|
| 790 | + $texte = spip_htmlspecialchars(echappe_retour(echappe_html($texte, '', true), '', 'proteger_amp'), $flags); |
|
| 791 | + if ($tout) { |
|
| 792 | + return corriger_toutes_entites_html($texte); |
|
| 793 | + } else { |
|
| 794 | + return corriger_entites_html($texte); |
|
| 795 | + } |
|
| 796 | 796 | } |
| 797 | 797 | |
| 798 | 798 | /** |
@@ -811,37 +811,37 @@ discard block |
||
| 811 | 811 | * Texte converti |
| 812 | 812 | **/ |
| 813 | 813 | function filtrer_entites($texte) { |
| 814 | - if (strpos($texte, '&') === false) { |
|
| 815 | - return $texte; |
|
| 816 | - } |
|
| 817 | - // filtrer |
|
| 818 | - $texte = html2unicode($texte); |
|
| 819 | - // remettre le tout dans le charset cible |
|
| 820 | - $texte = unicode2charset($texte); |
|
| 821 | - // cas particulier des " et ' qu'il faut filtrer aussi |
|
| 822 | - // (on le faisait deja avec un ") |
|
| 823 | - if (strpos($texte, "&#") !== false) { |
|
| 824 | - $texte = str_replace(array("'", "'", """, """), array("'", "'", '"', '"'), $texte); |
|
| 825 | - } |
|
| 814 | + if (strpos($texte, '&') === false) { |
|
| 815 | + return $texte; |
|
| 816 | + } |
|
| 817 | + // filtrer |
|
| 818 | + $texte = html2unicode($texte); |
|
| 819 | + // remettre le tout dans le charset cible |
|
| 820 | + $texte = unicode2charset($texte); |
|
| 821 | + // cas particulier des " et ' qu'il faut filtrer aussi |
|
| 822 | + // (on le faisait deja avec un ") |
|
| 823 | + if (strpos($texte, "&#") !== false) { |
|
| 824 | + $texte = str_replace(array("'", "'", """, """), array("'", "'", '"', '"'), $texte); |
|
| 825 | + } |
|
| 826 | 826 | |
| 827 | - return $texte; |
|
| 827 | + return $texte; |
|
| 828 | 828 | } |
| 829 | 829 | |
| 830 | 830 | |
| 831 | 831 | if (!function_exists('filtre_filtrer_entites_dist')) { |
| 832 | - /** |
|
| 833 | - * Version sécurisée de filtrer_entites |
|
| 834 | - * |
|
| 835 | - * @uses interdire_scripts() |
|
| 836 | - * @uses filtrer_entites() |
|
| 837 | - * |
|
| 838 | - * @param string $t |
|
| 839 | - * @return string |
|
| 840 | - */ |
|
| 841 | - function filtre_filtrer_entites_dist($t) { |
|
| 842 | - include_spip('inc/texte'); |
|
| 843 | - return interdire_scripts(filtrer_entites($t)); |
|
| 844 | - } |
|
| 832 | + /** |
|
| 833 | + * Version sécurisée de filtrer_entites |
|
| 834 | + * |
|
| 835 | + * @uses interdire_scripts() |
|
| 836 | + * @uses filtrer_entites() |
|
| 837 | + * |
|
| 838 | + * @param string $t |
|
| 839 | + * @return string |
|
| 840 | + */ |
|
| 841 | + function filtre_filtrer_entites_dist($t) { |
|
| 842 | + include_spip('inc/texte'); |
|
| 843 | + return interdire_scripts(filtrer_entites($t)); |
|
| 844 | + } |
|
| 845 | 845 | } |
| 846 | 846 | |
| 847 | 847 | |
@@ -856,18 +856,18 @@ discard block |
||
| 856 | 856 | * @return string|array |
| 857 | 857 | **/ |
| 858 | 858 | function supprimer_caracteres_illegaux($texte) { |
| 859 | - 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"; |
|
| 860 | - static $to = null; |
|
| 859 | + 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"; |
|
| 860 | + static $to = null; |
|
| 861 | 861 | |
| 862 | - if (is_array($texte)) { |
|
| 863 | - return array_map('supprimer_caracteres_illegaux', $texte); |
|
| 864 | - } |
|
| 862 | + if (is_array($texte)) { |
|
| 863 | + return array_map('supprimer_caracteres_illegaux', $texte); |
|
| 864 | + } |
|
| 865 | 865 | |
| 866 | - if (!$to) { |
|
| 867 | - $to = str_repeat('-', strlen($from)); |
|
| 868 | - } |
|
| 866 | + if (!$to) { |
|
| 867 | + $to = str_repeat('-', strlen($from)); |
|
| 868 | + } |
|
| 869 | 869 | |
| 870 | - return strtr($texte, $from, $to); |
|
| 870 | + return strtr($texte, $from, $to); |
|
| 871 | 871 | } |
| 872 | 872 | |
| 873 | 873 | /** |
@@ -879,10 +879,10 @@ discard block |
||
| 879 | 879 | * @return string|array |
| 880 | 880 | **/ |
| 881 | 881 | function corriger_caracteres($texte) { |
| 882 | - $texte = corriger_caracteres_windows($texte); |
|
| 883 | - $texte = supprimer_caracteres_illegaux($texte); |
|
| 882 | + $texte = corriger_caracteres_windows($texte); |
|
| 883 | + $texte = supprimer_caracteres_illegaux($texte); |
|
| 884 | 884 | |
| 885 | - return $texte; |
|
| 885 | + return $texte; |
|
| 886 | 886 | } |
| 887 | 887 | |
| 888 | 888 | /** |
@@ -900,40 +900,40 @@ discard block |
||
| 900 | 900 | */ |
| 901 | 901 | function texte_backend($texte) { |
| 902 | 902 | |
| 903 | - static $apostrophe = array("’", "'"); # n'allouer qu'une fois |
|
| 903 | + static $apostrophe = array("’", "'"); # n'allouer qu'une fois |
|
| 904 | 904 | |
| 905 | - // si on a des liens ou des images, les passer en absolu |
|
| 906 | - $texte = liens_absolus($texte); |
|
| 905 | + // si on a des liens ou des images, les passer en absolu |
|
| 906 | + $texte = liens_absolus($texte); |
|
| 907 | 907 | |
| 908 | - // echapper les tags > < |
|
| 909 | - $texte = preg_replace(',&(gt|lt);,S', '&\1;', $texte); |
|
| 908 | + // echapper les tags > < |
|
| 909 | + $texte = preg_replace(',&(gt|lt);,S', '&\1;', $texte); |
|
| 910 | 910 | |
| 911 | - // importer les é |
|
| 912 | - $texte = filtrer_entites($texte); |
|
| 911 | + // importer les é |
|
| 912 | + $texte = filtrer_entites($texte); |
|
| 913 | 913 | |
| 914 | - // " -> " et tout ce genre de choses |
|
| 915 | - $u = $GLOBALS['meta']['pcre_u']; |
|
| 916 | - $texte = str_replace(" ", " ", $texte); |
|
| 917 | - $texte = preg_replace('/\s{2,}/S' . $u, " ", $texte); |
|
| 918 | - // ne pas echapper les sinqle quotes car certains outils de syndication gerent mal |
|
| 919 | - $texte = entites_html($texte, false, false); |
|
| 920 | - // mais bien echapper les double quotes ! |
|
| 921 | - $texte = str_replace('"', '"', $texte); |
|
| 914 | + // " -> " et tout ce genre de choses |
|
| 915 | + $u = $GLOBALS['meta']['pcre_u']; |
|
| 916 | + $texte = str_replace(" ", " ", $texte); |
|
| 917 | + $texte = preg_replace('/\s{2,}/S' . $u, " ", $texte); |
|
| 918 | + // ne pas echapper les sinqle quotes car certains outils de syndication gerent mal |
|
| 919 | + $texte = entites_html($texte, false, false); |
|
| 920 | + // mais bien echapper les double quotes ! |
|
| 921 | + $texte = str_replace('"', '"', $texte); |
|
| 922 | 922 | |
| 923 | - // verifier le charset |
|
| 924 | - $texte = charset2unicode($texte); |
|
| 923 | + // verifier le charset |
|
| 924 | + $texte = charset2unicode($texte); |
|
| 925 | 925 | |
| 926 | - // Caracteres problematiques en iso-latin 1 |
|
| 927 | - if (isset($GLOBALS['meta']['charset']) and $GLOBALS['meta']['charset'] == 'iso-8859-1') { |
|
| 928 | - $texte = str_replace(chr(156), 'œ', $texte); |
|
| 929 | - $texte = str_replace(chr(140), 'Œ', $texte); |
|
| 930 | - $texte = str_replace(chr(159), 'Ÿ', $texte); |
|
| 931 | - } |
|
| 926 | + // Caracteres problematiques en iso-latin 1 |
|
| 927 | + if (isset($GLOBALS['meta']['charset']) and $GLOBALS['meta']['charset'] == 'iso-8859-1') { |
|
| 928 | + $texte = str_replace(chr(156), 'œ', $texte); |
|
| 929 | + $texte = str_replace(chr(140), 'Œ', $texte); |
|
| 930 | + $texte = str_replace(chr(159), 'Ÿ', $texte); |
|
| 931 | + } |
|
| 932 | 932 | |
| 933 | - // l'apostrophe curly pose probleme a certains lecteure de RSS |
|
| 934 | - // et le caractere apostrophe alourdit les squelettes avec PHP |
|
| 935 | - // ==> on les remplace par l'entite HTML |
|
| 936 | - return str_replace($apostrophe, "'", $texte); |
|
| 933 | + // l'apostrophe curly pose probleme a certains lecteure de RSS |
|
| 934 | + // et le caractere apostrophe alourdit les squelettes avec PHP |
|
| 935 | + // ==> on les remplace par l'entite HTML |
|
| 936 | + return str_replace($apostrophe, "'", $texte); |
|
| 937 | 937 | } |
| 938 | 938 | |
| 939 | 939 | /** |
@@ -950,7 +950,7 @@ discard block |
||
| 950 | 950 | * Texte encodé et quote pour XML |
| 951 | 951 | */ |
| 952 | 952 | function texte_backendq($texte) { |
| 953 | - return addslashes(texte_backend($texte)); |
|
| 953 | + return addslashes(texte_backend($texte)); |
|
| 954 | 954 | } |
| 955 | 955 | |
| 956 | 956 | |
@@ -973,9 +973,9 @@ discard block |
||
| 973 | 973 | * Numéro de titre, sinon chaîne vide |
| 974 | 974 | **/ |
| 975 | 975 | function supprimer_numero($texte) { |
| 976 | - return preg_replace( |
|
| 977 | - ",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S", |
|
| 978 | - "", $texte); |
|
| 976 | + return preg_replace( |
|
| 977 | + ",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S", |
|
| 978 | + "", $texte); |
|
| 979 | 979 | } |
| 980 | 980 | |
| 981 | 981 | /** |
@@ -998,13 +998,13 @@ discard block |
||
| 998 | 998 | * Numéro de titre, sinon chaîne vide |
| 999 | 999 | **/ |
| 1000 | 1000 | function recuperer_numero($texte) { |
| 1001 | - if (preg_match( |
|
| 1002 | - ",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S", |
|
| 1003 | - $texte, $regs)) { |
|
| 1004 | - return strval($regs[1]); |
|
| 1005 | - } else { |
|
| 1006 | - return ''; |
|
| 1007 | - } |
|
| 1001 | + if (preg_match( |
|
| 1002 | + ",^[[:space:]]*([0-9]+)([.)]|" . chr(194) . '?' . chr(176) . ")[[:space:]]+,S", |
|
| 1003 | + $texte, $regs)) { |
|
| 1004 | + return strval($regs[1]); |
|
| 1005 | + } else { |
|
| 1006 | + return ''; |
|
| 1007 | + } |
|
| 1008 | 1008 | } |
| 1009 | 1009 | |
| 1010 | 1010 | /** |
@@ -1031,13 +1031,13 @@ discard block |
||
| 1031 | 1031 | * Texte converti |
| 1032 | 1032 | **/ |
| 1033 | 1033 | function supprimer_tags($texte, $rempl = "") { |
| 1034 | - $texte = preg_replace(",<(!--|\w|/|!\[endif|!\[if)[^>]*>,US", $rempl, $texte); |
|
| 1035 | - // ne pas oublier un < final non ferme car coupe |
|
| 1036 | - $texte = preg_replace(",<(!--|\w|/).*$,US", $rempl, $texte); |
|
| 1037 | - // mais qui peut aussi etre un simple signe plus petit que |
|
| 1038 | - $texte = str_replace('<', '<', $texte); |
|
| 1034 | + $texte = preg_replace(",<(!--|\w|/|!\[endif|!\[if)[^>]*>,US", $rempl, $texte); |
|
| 1035 | + // ne pas oublier un < final non ferme car coupe |
|
| 1036 | + $texte = preg_replace(",<(!--|\w|/).*$,US", $rempl, $texte); |
|
| 1037 | + // mais qui peut aussi etre un simple signe plus petit que |
|
| 1038 | + $texte = str_replace('<', '<', $texte); |
|
| 1039 | 1039 | |
| 1040 | - return $texte; |
|
| 1040 | + return $texte; |
|
| 1041 | 1041 | } |
| 1042 | 1042 | |
| 1043 | 1043 | /** |
@@ -1060,9 +1060,9 @@ discard block |
||
| 1060 | 1060 | * Texte converti |
| 1061 | 1061 | **/ |
| 1062 | 1062 | function echapper_tags($texte, $rempl = "") { |
| 1063 | - $texte = preg_replace("/<([^>]*)>/", "<\\1>", $texte); |
|
| 1063 | + $texte = preg_replace("/<([^>]*)>/", "<\\1>", $texte); |
|
| 1064 | 1064 | |
| 1065 | - return $texte; |
|
| 1065 | + return $texte; |
|
| 1066 | 1066 | } |
| 1067 | 1067 | |
| 1068 | 1068 | /** |
@@ -1083,18 +1083,18 @@ discard block |
||
| 1083 | 1083 | * Texte converti |
| 1084 | 1084 | **/ |
| 1085 | 1085 | function textebrut($texte) { |
| 1086 | - $u = $GLOBALS['meta']['pcre_u']; |
|
| 1087 | - $texte = preg_replace('/\s+/S' . $u, " ", $texte); |
|
| 1088 | - $texte = preg_replace("/<(p|br)( [^>]*)?" . ">/iS", "\n\n", $texte); |
|
| 1089 | - $texte = preg_replace("/^\n+/", "", $texte); |
|
| 1090 | - $texte = preg_replace("/\n+$/", "", $texte); |
|
| 1091 | - $texte = preg_replace("/\n +/", "\n", $texte); |
|
| 1092 | - $texte = supprimer_tags($texte); |
|
| 1093 | - $texte = preg_replace("/( | )+/S", " ", $texte); |
|
| 1094 | - // nettoyer l'apostrophe curly qui pose probleme a certains rss-readers, lecteurs de mail... |
|
| 1095 | - $texte = str_replace("’", "'", $texte); |
|
| 1086 | + $u = $GLOBALS['meta']['pcre_u']; |
|
| 1087 | + $texte = preg_replace('/\s+/S' . $u, " ", $texte); |
|
| 1088 | + $texte = preg_replace("/<(p|br)( [^>]*)?" . ">/iS", "\n\n", $texte); |
|
| 1089 | + $texte = preg_replace("/^\n+/", "", $texte); |
|
| 1090 | + $texte = preg_replace("/\n+$/", "", $texte); |
|
| 1091 | + $texte = preg_replace("/\n +/", "\n", $texte); |
|
| 1092 | + $texte = supprimer_tags($texte); |
|
| 1093 | + $texte = preg_replace("/( | )+/S", " ", $texte); |
|
| 1094 | + // nettoyer l'apostrophe curly qui pose probleme a certains rss-readers, lecteurs de mail... |
|
| 1095 | + $texte = str_replace("’", "'", $texte); |
|
| 1096 | 1096 | |
| 1097 | - return $texte; |
|
| 1097 | + return $texte; |
|
| 1098 | 1098 | } |
| 1099 | 1099 | |
| 1100 | 1100 | |
@@ -1110,17 +1110,17 @@ discard block |
||
| 1110 | 1110 | * Texte avec liens ouvrants |
| 1111 | 1111 | **/ |
| 1112 | 1112 | function liens_ouvrants($texte) { |
| 1113 | - if (preg_match_all(",(<a\s+[^>]*https?://[^>]*class=[\"']spip_(out|url)\b[^>]+>),imsS", |
|
| 1114 | - $texte, $liens, PREG_PATTERN_ORDER)) { |
|
| 1115 | - foreach ($liens[0] as $a) { |
|
| 1116 | - $rel = 'noopener noreferrer ' . extraire_attribut($a, 'rel'); |
|
| 1117 | - $ablank = inserer_attribut($a, 'rel', $rel); |
|
| 1118 | - $ablank = inserer_attribut($ablank, 'target', '_blank'); |
|
| 1119 | - $texte = str_replace($a, $ablank, $texte); |
|
| 1120 | - } |
|
| 1121 | - } |
|
| 1113 | + if (preg_match_all(",(<a\s+[^>]*https?://[^>]*class=[\"']spip_(out|url)\b[^>]+>),imsS", |
|
| 1114 | + $texte, $liens, PREG_PATTERN_ORDER)) { |
|
| 1115 | + foreach ($liens[0] as $a) { |
|
| 1116 | + $rel = 'noopener noreferrer ' . extraire_attribut($a, 'rel'); |
|
| 1117 | + $ablank = inserer_attribut($a, 'rel', $rel); |
|
| 1118 | + $ablank = inserer_attribut($ablank, 'target', '_blank'); |
|
| 1119 | + $texte = str_replace($a, $ablank, $texte); |
|
| 1120 | + } |
|
| 1121 | + } |
|
| 1122 | 1122 | |
| 1123 | - return $texte; |
|
| 1123 | + return $texte; |
|
| 1124 | 1124 | } |
| 1125 | 1125 | |
| 1126 | 1126 | /** |
@@ -1130,22 +1130,22 @@ discard block |
||
| 1130 | 1130 | * @return string |
| 1131 | 1131 | */ |
| 1132 | 1132 | function liens_nofollow($texte) { |
| 1133 | - if (stripos($texte, "<a") === false) { |
|
| 1134 | - return $texte; |
|
| 1135 | - } |
|
| 1133 | + if (stripos($texte, "<a") === false) { |
|
| 1134 | + return $texte; |
|
| 1135 | + } |
|
| 1136 | 1136 | |
| 1137 | - if (preg_match_all(",<a\b[^>]*>,UimsS", $texte, $regs, PREG_PATTERN_ORDER)) { |
|
| 1138 | - foreach ($regs[0] as $a) { |
|
| 1139 | - $rel = extraire_attribut($a, "rel"); |
|
| 1140 | - if (strpos($rel, "nofollow") === false) { |
|
| 1141 | - $rel = "nofollow" . ($rel ? " $rel" : ""); |
|
| 1142 | - $anofollow = inserer_attribut($a, "rel", $rel); |
|
| 1143 | - $texte = str_replace($a, $anofollow, $texte); |
|
| 1144 | - } |
|
| 1145 | - } |
|
| 1146 | - } |
|
| 1137 | + if (preg_match_all(",<a\b[^>]*>,UimsS", $texte, $regs, PREG_PATTERN_ORDER)) { |
|
| 1138 | + foreach ($regs[0] as $a) { |
|
| 1139 | + $rel = extraire_attribut($a, "rel"); |
|
| 1140 | + if (strpos($rel, "nofollow") === false) { |
|
| 1141 | + $rel = "nofollow" . ($rel ? " $rel" : ""); |
|
| 1142 | + $anofollow = inserer_attribut($a, "rel", $rel); |
|
| 1143 | + $texte = str_replace($a, $anofollow, $texte); |
|
| 1144 | + } |
|
| 1145 | + } |
|
| 1146 | + } |
|
| 1147 | 1147 | |
| 1148 | - return $texte; |
|
| 1148 | + return $texte; |
|
| 1149 | 1149 | } |
| 1150 | 1150 | |
| 1151 | 1151 | /** |
@@ -1164,12 +1164,12 @@ discard block |
||
| 1164 | 1164 | * Texte sans paraghaphes |
| 1165 | 1165 | **/ |
| 1166 | 1166 | function PtoBR($texte) { |
| 1167 | - $u = $GLOBALS['meta']['pcre_u']; |
|
| 1168 | - $texte = preg_replace("@</p>@iS", "\n", $texte); |
|
| 1169 | - $texte = preg_replace("@<p\b.*>@UiS", "<br />", $texte); |
|
| 1170 | - $texte = preg_replace("@^\s*<br />@S" . $u, "", $texte); |
|
| 1167 | + $u = $GLOBALS['meta']['pcre_u']; |
|
| 1168 | + $texte = preg_replace("@</p>@iS", "\n", $texte); |
|
| 1169 | + $texte = preg_replace("@<p\b.*>@UiS", "<br />", $texte); |
|
| 1170 | + $texte = preg_replace("@^\s*<br />@S" . $u, "", $texte); |
|
| 1171 | 1171 | |
| 1172 | - return $texte; |
|
| 1172 | + return $texte; |
|
| 1173 | 1173 | } |
| 1174 | 1174 | |
| 1175 | 1175 | |
@@ -1194,14 +1194,14 @@ discard block |
||
| 1194 | 1194 | * @return string Texte encadré du style CSS |
| 1195 | 1195 | */ |
| 1196 | 1196 | function lignes_longues($texte) { |
| 1197 | - if (!strlen(trim($texte))) { |
|
| 1198 | - return $texte; |
|
| 1199 | - } |
|
| 1200 | - include_spip('inc/texte'); |
|
| 1201 | - $tag = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $texte) ? |
|
| 1202 | - 'div' : 'span'; |
|
| 1197 | + if (!strlen(trim($texte))) { |
|
| 1198 | + return $texte; |
|
| 1199 | + } |
|
| 1200 | + include_spip('inc/texte'); |
|
| 1201 | + $tag = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $texte) ? |
|
| 1202 | + 'div' : 'span'; |
|
| 1203 | 1203 | |
| 1204 | - return "<$tag style='word-wrap:break-word;'>$texte</$tag>"; |
|
| 1204 | + return "<$tag style='word-wrap:break-word;'>$texte</$tag>"; |
|
| 1205 | 1205 | } |
| 1206 | 1206 | |
| 1207 | 1207 | /** |
@@ -1220,30 +1220,30 @@ discard block |
||
| 1220 | 1220 | * @return string Texte en majuscule |
| 1221 | 1221 | */ |
| 1222 | 1222 | function majuscules($texte) { |
| 1223 | - if (!strlen($texte)) { |
|
| 1224 | - return ''; |
|
| 1225 | - } |
|
| 1223 | + if (!strlen($texte)) { |
|
| 1224 | + return ''; |
|
| 1225 | + } |
|
| 1226 | 1226 | |
| 1227 | - // Cas du turc |
|
| 1228 | - if ($GLOBALS['spip_lang'] == 'tr') { |
|
| 1229 | - # remplacer hors des tags et des entites |
|
| 1230 | - if (preg_match_all(',<[^<>]+>|&[^;]+;,S', $texte, $regs, PREG_SET_ORDER)) { |
|
| 1231 | - foreach ($regs as $n => $match) { |
|
| 1232 | - $texte = str_replace($match[0], "@@SPIP_TURC$n@@", $texte); |
|
| 1233 | - } |
|
| 1234 | - } |
|
| 1227 | + // Cas du turc |
|
| 1228 | + if ($GLOBALS['spip_lang'] == 'tr') { |
|
| 1229 | + # remplacer hors des tags et des entites |
|
| 1230 | + if (preg_match_all(',<[^<>]+>|&[^;]+;,S', $texte, $regs, PREG_SET_ORDER)) { |
|
| 1231 | + foreach ($regs as $n => $match) { |
|
| 1232 | + $texte = str_replace($match[0], "@@SPIP_TURC$n@@", $texte); |
|
| 1233 | + } |
|
| 1234 | + } |
|
| 1235 | 1235 | |
| 1236 | - $texte = str_replace('i', 'İ', $texte); |
|
| 1236 | + $texte = str_replace('i', 'İ', $texte); |
|
| 1237 | 1237 | |
| 1238 | - if ($regs) { |
|
| 1239 | - foreach ($regs as $n => $match) { |
|
| 1240 | - $texte = str_replace("@@SPIP_TURC$n@@", $match[0], $texte); |
|
| 1241 | - } |
|
| 1242 | - } |
|
| 1243 | - } |
|
| 1238 | + if ($regs) { |
|
| 1239 | + foreach ($regs as $n => $match) { |
|
| 1240 | + $texte = str_replace("@@SPIP_TURC$n@@", $match[0], $texte); |
|
| 1241 | + } |
|
| 1242 | + } |
|
| 1243 | + } |
|
| 1244 | 1244 | |
| 1245 | - // Cas general |
|
| 1246 | - return "<span style='text-transform: uppercase;'>$texte</span>"; |
|
| 1245 | + // Cas general |
|
| 1246 | + return "<span style='text-transform: uppercase;'>$texte</span>"; |
|
| 1247 | 1247 | } |
| 1248 | 1248 | |
| 1249 | 1249 | /** |
@@ -1261,29 +1261,29 @@ discard block |
||
| 1261 | 1261 | * @return string |
| 1262 | 1262 | **/ |
| 1263 | 1263 | function taille_en_octets($taille) { |
| 1264 | - if (!defined('_KILOBYTE')) { |
|
| 1265 | - /** |
|
| 1266 | - * Définit le nombre d'octets dans un Kilobyte |
|
| 1267 | - * |
|
| 1268 | - * @var int |
|
| 1269 | - **/ |
|
| 1270 | - define('_KILOBYTE', 1024); |
|
| 1271 | - } |
|
| 1264 | + if (!defined('_KILOBYTE')) { |
|
| 1265 | + /** |
|
| 1266 | + * Définit le nombre d'octets dans un Kilobyte |
|
| 1267 | + * |
|
| 1268 | + * @var int |
|
| 1269 | + **/ |
|
| 1270 | + define('_KILOBYTE', 1024); |
|
| 1271 | + } |
|
| 1272 | 1272 | |
| 1273 | - if ($taille < 1) { |
|
| 1274 | - return ''; |
|
| 1275 | - } |
|
| 1276 | - if ($taille < _KILOBYTE) { |
|
| 1277 | - $taille = _T('taille_octets', array('taille' => $taille)); |
|
| 1278 | - } elseif ($taille < _KILOBYTE * _KILOBYTE) { |
|
| 1279 | - $taille = _T('taille_ko', array('taille' => round($taille / _KILOBYTE, 1))); |
|
| 1280 | - } elseif ($taille < _KILOBYTE * _KILOBYTE * _KILOBYTE) { |
|
| 1281 | - $taille = _T('taille_mo', array('taille' => round($taille / _KILOBYTE / _KILOBYTE, 1))); |
|
| 1282 | - } else { |
|
| 1283 | - $taille = _T('taille_go', array('taille' => round($taille / _KILOBYTE / _KILOBYTE / _KILOBYTE, 2))); |
|
| 1284 | - } |
|
| 1273 | + if ($taille < 1) { |
|
| 1274 | + return ''; |
|
| 1275 | + } |
|
| 1276 | + if ($taille < _KILOBYTE) { |
|
| 1277 | + $taille = _T('taille_octets', array('taille' => $taille)); |
|
| 1278 | + } elseif ($taille < _KILOBYTE * _KILOBYTE) { |
|
| 1279 | + $taille = _T('taille_ko', array('taille' => round($taille / _KILOBYTE, 1))); |
|
| 1280 | + } elseif ($taille < _KILOBYTE * _KILOBYTE * _KILOBYTE) { |
|
| 1281 | + $taille = _T('taille_mo', array('taille' => round($taille / _KILOBYTE / _KILOBYTE, 1))); |
|
| 1282 | + } else { |
|
| 1283 | + $taille = _T('taille_go', array('taille' => round($taille / _KILOBYTE / _KILOBYTE / _KILOBYTE, 2))); |
|
| 1284 | + } |
|
| 1285 | 1285 | |
| 1286 | - return $taille; |
|
| 1286 | + return $taille; |
|
| 1287 | 1287 | } |
| 1288 | 1288 | |
| 1289 | 1289 | |
@@ -1305,15 +1305,15 @@ discard block |
||
| 1305 | 1305 | * Texte prêt pour être utilisé en attribut HTML |
| 1306 | 1306 | **/ |
| 1307 | 1307 | function attribut_html($texte, $textebrut = true) { |
| 1308 | - $u = $GLOBALS['meta']['pcre_u']; |
|
| 1309 | - if ($textebrut) { |
|
| 1310 | - $texte = preg_replace(array(",\n,", ",\s(?=\s),msS" . $u), array(" ", ""), textebrut($texte)); |
|
| 1311 | - } |
|
| 1312 | - $texte = texte_backend($texte); |
|
| 1313 | - $texte = str_replace(array("'", '"'), array(''', '"'), $texte); |
|
| 1308 | + $u = $GLOBALS['meta']['pcre_u']; |
|
| 1309 | + if ($textebrut) { |
|
| 1310 | + $texte = preg_replace(array(",\n,", ",\s(?=\s),msS" . $u), array(" ", ""), textebrut($texte)); |
|
| 1311 | + } |
|
| 1312 | + $texte = texte_backend($texte); |
|
| 1313 | + $texte = str_replace(array("'", '"'), array(''', '"'), $texte); |
|
| 1314 | 1314 | |
| 1315 | - return preg_replace(array("/&(amp;|#38;)/", "/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,5};)/"), array("&", "&"), |
|
| 1316 | - $texte); |
|
| 1315 | + return preg_replace(array("/&(amp;|#38;)/", "/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,5};)/"), array("&", "&"), |
|
| 1316 | + $texte); |
|
| 1317 | 1317 | } |
| 1318 | 1318 | |
| 1319 | 1319 | |
@@ -1333,12 +1333,12 @@ discard block |
||
| 1333 | 1333 | * URL ou chaîne vide |
| 1334 | 1334 | **/ |
| 1335 | 1335 | function vider_url($url, $entites = true) { |
| 1336 | - # un message pour abs_url |
|
| 1337 | - $GLOBALS['mode_abs_url'] = 'url'; |
|
| 1338 | - $url = trim($url); |
|
| 1339 | - $r = ",^(?:" . _PROTOCOLES_STD . '):?/?/?$,iS'; |
|
| 1336 | + # un message pour abs_url |
|
| 1337 | + $GLOBALS['mode_abs_url'] = 'url'; |
|
| 1338 | + $url = trim($url); |
|
| 1339 | + $r = ",^(?:" . _PROTOCOLES_STD . '):?/?/?$,iS'; |
|
| 1340 | 1340 | |
| 1341 | - return preg_match($r, $url) ? '' : ($entites ? entites_html($url) : $url); |
|
| 1341 | + return preg_match($r, $url) ? '' : ($entites ? entites_html($url) : $url); |
|
| 1342 | 1342 | } |
| 1343 | 1343 | |
| 1344 | 1344 | |
@@ -1353,10 +1353,10 @@ discard block |
||
| 1353 | 1353 | * @return string Adresse email maquillée |
| 1354 | 1354 | **/ |
| 1355 | 1355 | function antispam($texte) { |
| 1356 | - include_spip('inc/acces'); |
|
| 1357 | - $masque = creer_pass_aleatoire(3); |
|
| 1356 | + include_spip('inc/acces'); |
|
| 1357 | + $masque = creer_pass_aleatoire(3); |
|
| 1358 | 1358 | |
| 1359 | - return preg_replace("/@/", " $masque ", $texte); |
|
| 1359 | + return preg_replace("/@/", " $masque ", $texte); |
|
| 1360 | 1360 | } |
| 1361 | 1361 | |
| 1362 | 1362 | /** |
@@ -1388,12 +1388,12 @@ discard block |
||
| 1388 | 1388 | * True si on a le droit d'accès, false sinon. |
| 1389 | 1389 | **/ |
| 1390 | 1390 | function securiser_acces($id_auteur, $cle, $dir, $op = '', $args = '') { |
| 1391 | - include_spip('inc/acces'); |
|
| 1392 | - if ($op) { |
|
| 1393 | - $dir .= " $op $args"; |
|
| 1394 | - } |
|
| 1391 | + include_spip('inc/acces'); |
|
| 1392 | + if ($op) { |
|
| 1393 | + $dir .= " $op $args"; |
|
| 1394 | + } |
|
| 1395 | 1395 | |
| 1396 | - return verifier_low_sec($id_auteur, $cle, $dir); |
|
| 1396 | + return verifier_low_sec($id_auteur, $cle, $dir); |
|
| 1397 | 1397 | } |
| 1398 | 1398 | |
| 1399 | 1399 | /** |
@@ -1418,11 +1418,11 @@ discard block |
||
| 1418 | 1418 | * Retourne $texte, sinon $sinon. |
| 1419 | 1419 | **/ |
| 1420 | 1420 | function sinon($texte, $sinon = '') { |
| 1421 | - if ($texte or (!is_array($texte) and strlen($texte))) { |
|
| 1422 | - return $texte; |
|
| 1423 | - } else { |
|
| 1424 | - return $sinon; |
|
| 1425 | - } |
|
| 1421 | + if ($texte or (!is_array($texte) and strlen($texte))) { |
|
| 1422 | + return $texte; |
|
| 1423 | + } else { |
|
| 1424 | + return $sinon; |
|
| 1425 | + } |
|
| 1426 | 1426 | } |
| 1427 | 1427 | |
| 1428 | 1428 | /** |
@@ -1446,7 +1446,7 @@ discard block |
||
| 1446 | 1446 | * @return mixed |
| 1447 | 1447 | **/ |
| 1448 | 1448 | function choixsivide($a, $vide, $pasvide) { |
| 1449 | - return $a ? $pasvide : $vide; |
|
| 1449 | + return $a ? $pasvide : $vide; |
|
| 1450 | 1450 | } |
| 1451 | 1451 | |
| 1452 | 1452 | /** |
@@ -1470,7 +1470,7 @@ discard block |
||
| 1470 | 1470 | * @return mixed |
| 1471 | 1471 | **/ |
| 1472 | 1472 | function choixsiegal($a1, $a2, $v, $f) { |
| 1473 | - return ($a1 == $a2) ? $v : $f; |
|
| 1473 | + return ($a1 == $a2) ? $v : $f; |
|
| 1474 | 1474 | } |
| 1475 | 1475 | |
| 1476 | 1476 | // |
@@ -1489,13 +1489,13 @@ discard block |
||
| 1489 | 1489 | * @return string |
| 1490 | 1490 | **/ |
| 1491 | 1491 | function filtrer_ical($texte) { |
| 1492 | - #include_spip('inc/charsets'); |
|
| 1493 | - $texte = html2unicode($texte); |
|
| 1494 | - $texte = unicode2charset(charset2unicode($texte, $GLOBALS['meta']['charset'], 1), 'utf-8'); |
|
| 1495 | - $texte = preg_replace("/\n/", " ", $texte); |
|
| 1496 | - $texte = preg_replace("/,/", "\,", $texte); |
|
| 1492 | + #include_spip('inc/charsets'); |
|
| 1493 | + $texte = html2unicode($texte); |
|
| 1494 | + $texte = unicode2charset(charset2unicode($texte, $GLOBALS['meta']['charset'], 1), 'utf-8'); |
|
| 1495 | + $texte = preg_replace("/\n/", " ", $texte); |
|
| 1496 | + $texte = preg_replace("/,/", "\,", $texte); |
|
| 1497 | 1497 | |
| 1498 | - return $texte; |
|
| 1498 | + return $texte; |
|
| 1499 | 1499 | } |
| 1500 | 1500 | |
| 1501 | 1501 | |
@@ -1520,53 +1520,53 @@ discard block |
||
| 1520 | 1520 | * @return string |
| 1521 | 1521 | **/ |
| 1522 | 1522 | function post_autobr($texte, $delim = "\n_ ") { |
| 1523 | - if (!function_exists('echappe_html')) { |
|
| 1524 | - include_spip('inc/texte_mini'); |
|
| 1525 | - } |
|
| 1526 | - $texte = str_replace("\r\n", "\r", $texte); |
|
| 1527 | - $texte = str_replace("\r", "\n", $texte); |
|
| 1528 | - |
|
| 1529 | - if (preg_match(",\n+$,", $texte, $fin)) { |
|
| 1530 | - $texte = substr($texte, 0, -strlen($fin = $fin[0])); |
|
| 1531 | - } else { |
|
| 1532 | - $fin = ''; |
|
| 1533 | - } |
|
| 1534 | - |
|
| 1535 | - $texte = echappe_html($texte, '', true); |
|
| 1536 | - |
|
| 1537 | - // echapper les modeles |
|
| 1538 | - if (strpos($texte, "<") !== false) { |
|
| 1539 | - include_spip('inc/lien'); |
|
| 1540 | - if (defined('_PREG_MODELE')) { |
|
| 1541 | - $preg_modeles = "@" . _PREG_MODELE . "@imsS"; |
|
| 1542 | - $texte = echappe_html($texte, '', true, $preg_modeles); |
|
| 1543 | - } |
|
| 1544 | - } |
|
| 1545 | - |
|
| 1546 | - $debut = ''; |
|
| 1547 | - $suite = $texte; |
|
| 1548 | - while ($t = strpos('-' . $suite, "\n", 1)) { |
|
| 1549 | - $debut .= substr($suite, 0, $t - 1); |
|
| 1550 | - $suite = substr($suite, $t); |
|
| 1551 | - $car = substr($suite, 0, 1); |
|
| 1552 | - if (($car <> '-') and ($car <> '_') and ($car <> "\n") and ($car <> "|") and ($car <> "}") |
|
| 1553 | - and !preg_match(',^\s*(\n|</?(quote|div|dl|dt|dd)|$),S', ($suite)) |
|
| 1554 | - and !preg_match(',</?(quote|div|dl|dt|dd)> *$,iS', $debut) |
|
| 1555 | - ) { |
|
| 1556 | - $debut .= $delim; |
|
| 1557 | - } else { |
|
| 1558 | - $debut .= "\n"; |
|
| 1559 | - } |
|
| 1560 | - if (preg_match(",^\n+,", $suite, $regs)) { |
|
| 1561 | - $debut .= $regs[0]; |
|
| 1562 | - $suite = substr($suite, strlen($regs[0])); |
|
| 1563 | - } |
|
| 1564 | - } |
|
| 1565 | - $texte = $debut . $suite; |
|
| 1566 | - |
|
| 1567 | - $texte = echappe_retour($texte); |
|
| 1568 | - |
|
| 1569 | - return $texte . $fin; |
|
| 1523 | + if (!function_exists('echappe_html')) { |
|
| 1524 | + include_spip('inc/texte_mini'); |
|
| 1525 | + } |
|
| 1526 | + $texte = str_replace("\r\n", "\r", $texte); |
|
| 1527 | + $texte = str_replace("\r", "\n", $texte); |
|
| 1528 | + |
|
| 1529 | + if (preg_match(",\n+$,", $texte, $fin)) { |
|
| 1530 | + $texte = substr($texte, 0, -strlen($fin = $fin[0])); |
|
| 1531 | + } else { |
|
| 1532 | + $fin = ''; |
|
| 1533 | + } |
|
| 1534 | + |
|
| 1535 | + $texte = echappe_html($texte, '', true); |
|
| 1536 | + |
|
| 1537 | + // echapper les modeles |
|
| 1538 | + if (strpos($texte, "<") !== false) { |
|
| 1539 | + include_spip('inc/lien'); |
|
| 1540 | + if (defined('_PREG_MODELE')) { |
|
| 1541 | + $preg_modeles = "@" . _PREG_MODELE . "@imsS"; |
|
| 1542 | + $texte = echappe_html($texte, '', true, $preg_modeles); |
|
| 1543 | + } |
|
| 1544 | + } |
|
| 1545 | + |
|
| 1546 | + $debut = ''; |
|
| 1547 | + $suite = $texte; |
|
| 1548 | + while ($t = strpos('-' . $suite, "\n", 1)) { |
|
| 1549 | + $debut .= substr($suite, 0, $t - 1); |
|
| 1550 | + $suite = substr($suite, $t); |
|
| 1551 | + $car = substr($suite, 0, 1); |
|
| 1552 | + if (($car <> '-') and ($car <> '_') and ($car <> "\n") and ($car <> "|") and ($car <> "}") |
|
| 1553 | + and !preg_match(',^\s*(\n|</?(quote|div|dl|dt|dd)|$),S', ($suite)) |
|
| 1554 | + and !preg_match(',</?(quote|div|dl|dt|dd)> *$,iS', $debut) |
|
| 1555 | + ) { |
|
| 1556 | + $debut .= $delim; |
|
| 1557 | + } else { |
|
| 1558 | + $debut .= "\n"; |
|
| 1559 | + } |
|
| 1560 | + if (preg_match(",^\n+,", $suite, $regs)) { |
|
| 1561 | + $debut .= $regs[0]; |
|
| 1562 | + $suite = substr($suite, strlen($regs[0])); |
|
| 1563 | + } |
|
| 1564 | + } |
|
| 1565 | + $texte = $debut . $suite; |
|
| 1566 | + |
|
| 1567 | + $texte = echappe_retour($texte); |
|
| 1568 | + |
|
| 1569 | + return $texte . $fin; |
|
| 1570 | 1570 | } |
| 1571 | 1571 | |
| 1572 | 1572 | |
@@ -1607,46 +1607,46 @@ discard block |
||
| 1607 | 1607 | * @return string |
| 1608 | 1608 | **/ |
| 1609 | 1609 | function extraire_idiome($letexte, $lang = null, $options = array()) { |
| 1610 | - static $traduire = false; |
|
| 1611 | - if ($letexte |
|
| 1612 | - and preg_match_all(_EXTRAIRE_IDIOME, $letexte, $regs, PREG_SET_ORDER) |
|
| 1613 | - ) { |
|
| 1614 | - if (!$traduire) { |
|
| 1615 | - $traduire = charger_fonction('traduire', 'inc'); |
|
| 1616 | - include_spip('inc/lang'); |
|
| 1617 | - } |
|
| 1618 | - if (!$lang) { |
|
| 1619 | - $lang = $GLOBALS['spip_lang']; |
|
| 1620 | - } |
|
| 1621 | - // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean |
|
| 1622 | - if (is_bool($options)) { |
|
| 1623 | - $options = array('echappe_span' => $options); |
|
| 1624 | - } |
|
| 1625 | - if (!isset($options['echappe_span'])) { |
|
| 1626 | - $options = array_merge($options, array('echappe_span' => false)); |
|
| 1627 | - } |
|
| 1628 | - |
|
| 1629 | - foreach ($regs as $reg) { |
|
| 1630 | - $cle = ($reg[1] ? $reg[1] . ':' : '') . $reg[2]; |
|
| 1631 | - $desc = $traduire($cle, $lang, true); |
|
| 1632 | - $l = $desc->langue; |
|
| 1633 | - // si pas de traduction, on laissera l'écriture de l'idiome entier dans le texte. |
|
| 1634 | - if (strlen($desc->texte)) { |
|
| 1635 | - $trad = code_echappement($desc->texte, 'idiome', false); |
|
| 1636 | - if ($l !== $lang) { |
|
| 1637 | - $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
|
| 1638 | - } |
|
| 1639 | - if (lang_dir($l) !== lang_dir($lang)) { |
|
| 1640 | - $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l))); |
|
| 1641 | - } |
|
| 1642 | - if (!$options['echappe_span']) { |
|
| 1643 | - $trad = echappe_retour($trad, 'idiome'); |
|
| 1644 | - } |
|
| 1645 | - $letexte = str_replace($reg[0], $trad, $letexte); |
|
| 1646 | - } |
|
| 1647 | - } |
|
| 1648 | - } |
|
| 1649 | - return $letexte; |
|
| 1610 | + static $traduire = false; |
|
| 1611 | + if ($letexte |
|
| 1612 | + and preg_match_all(_EXTRAIRE_IDIOME, $letexte, $regs, PREG_SET_ORDER) |
|
| 1613 | + ) { |
|
| 1614 | + if (!$traduire) { |
|
| 1615 | + $traduire = charger_fonction('traduire', 'inc'); |
|
| 1616 | + include_spip('inc/lang'); |
|
| 1617 | + } |
|
| 1618 | + if (!$lang) { |
|
| 1619 | + $lang = $GLOBALS['spip_lang']; |
|
| 1620 | + } |
|
| 1621 | + // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean |
|
| 1622 | + if (is_bool($options)) { |
|
| 1623 | + $options = array('echappe_span' => $options); |
|
| 1624 | + } |
|
| 1625 | + if (!isset($options['echappe_span'])) { |
|
| 1626 | + $options = array_merge($options, array('echappe_span' => false)); |
|
| 1627 | + } |
|
| 1628 | + |
|
| 1629 | + foreach ($regs as $reg) { |
|
| 1630 | + $cle = ($reg[1] ? $reg[1] . ':' : '') . $reg[2]; |
|
| 1631 | + $desc = $traduire($cle, $lang, true); |
|
| 1632 | + $l = $desc->langue; |
|
| 1633 | + // si pas de traduction, on laissera l'écriture de l'idiome entier dans le texte. |
|
| 1634 | + if (strlen($desc->texte)) { |
|
| 1635 | + $trad = code_echappement($desc->texte, 'idiome', false); |
|
| 1636 | + if ($l !== $lang) { |
|
| 1637 | + $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
|
| 1638 | + } |
|
| 1639 | + if (lang_dir($l) !== lang_dir($lang)) { |
|
| 1640 | + $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l))); |
|
| 1641 | + } |
|
| 1642 | + if (!$options['echappe_span']) { |
|
| 1643 | + $trad = echappe_retour($trad, 'idiome'); |
|
| 1644 | + } |
|
| 1645 | + $letexte = str_replace($reg[0], $trad, $letexte); |
|
| 1646 | + } |
|
| 1647 | + } |
|
| 1648 | + } |
|
| 1649 | + return $letexte; |
|
| 1650 | 1650 | } |
| 1651 | 1651 | |
| 1652 | 1652 | /** |
@@ -1698,67 +1698,67 @@ discard block |
||
| 1698 | 1698 | **/ |
| 1699 | 1699 | function extraire_multi($letexte, $lang = null, $options = array()) { |
| 1700 | 1700 | |
| 1701 | - if ($letexte |
|
| 1702 | - and preg_match_all(_EXTRAIRE_MULTI, $letexte, $regs, PREG_SET_ORDER) |
|
| 1703 | - ) { |
|
| 1704 | - if (!$lang) { |
|
| 1705 | - $lang = $GLOBALS['spip_lang']; |
|
| 1706 | - } |
|
| 1707 | - |
|
| 1708 | - // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean |
|
| 1709 | - if (is_bool($options)) { |
|
| 1710 | - $options = array('echappe_span' => $options, 'lang_defaut' => _LANGUE_PAR_DEFAUT); |
|
| 1711 | - } |
|
| 1712 | - if (!isset($options['echappe_span'])) { |
|
| 1713 | - $options = array_merge($options, array('echappe_span' => false)); |
|
| 1714 | - } |
|
| 1715 | - if (!isset($options['lang_defaut'])) { |
|
| 1716 | - $options = array_merge($options, array('lang_defaut' => _LANGUE_PAR_DEFAUT)); |
|
| 1717 | - } |
|
| 1718 | - |
|
| 1719 | - include_spip('inc/lang'); |
|
| 1720 | - foreach ($regs as $reg) { |
|
| 1721 | - // chercher la version de la langue courante |
|
| 1722 | - $trads = extraire_trads($reg[1]); |
|
| 1723 | - if ($l = approcher_langue($trads, $lang)) { |
|
| 1724 | - $trad = $trads[$l]; |
|
| 1725 | - } else { |
|
| 1726 | - if ($options['lang_defaut'] == 'aucune') { |
|
| 1727 | - $trad = ''; |
|
| 1728 | - } else { |
|
| 1729 | - // langue absente, prendre le fr ou une langue précisée (meme comportement que inc/traduire.php) |
|
| 1730 | - // ou la premiere dispo |
|
| 1731 | - // mais typographier le texte selon les regles de celle-ci |
|
| 1732 | - // Attention aux blocs multi sur plusieurs lignes |
|
| 1733 | - if (!$l = approcher_langue($trads, $options['lang_defaut'])) { |
|
| 1734 | - $l = key($trads); |
|
| 1735 | - } |
|
| 1736 | - $trad = $trads[$l]; |
|
| 1737 | - $typographie = charger_fonction(lang_typo($l), 'typographie'); |
|
| 1738 | - $trad = $typographie($trad); |
|
| 1739 | - // Tester si on echappe en span ou en div |
|
| 1740 | - // il ne faut pas echapper en div si propre produit un seul paragraphe |
|
| 1741 | - include_spip('inc/texte'); |
|
| 1742 | - $trad_propre = preg_replace(",(^<p[^>]*>|</p>$),Uims", "", propre($trad)); |
|
| 1743 | - $mode = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $trad_propre) ? 'div' : 'span'; |
|
| 1744 | - if ($mode === 'div') { |
|
| 1745 | - $trad = rtrim($trad) . "\n\n"; |
|
| 1746 | - } |
|
| 1747 | - $trad = code_echappement($trad, 'multi', false, $mode); |
|
| 1748 | - $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
|
| 1749 | - if (lang_dir($l) !== lang_dir($lang)) { |
|
| 1750 | - $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l))); |
|
| 1751 | - } |
|
| 1752 | - if (!$options['echappe_span']) { |
|
| 1753 | - $trad = echappe_retour($trad, 'multi'); |
|
| 1754 | - } |
|
| 1755 | - } |
|
| 1756 | - } |
|
| 1757 | - $letexte = str_replace($reg[0], $trad, $letexte); |
|
| 1758 | - } |
|
| 1759 | - } |
|
| 1760 | - |
|
| 1761 | - return $letexte; |
|
| 1701 | + if ($letexte |
|
| 1702 | + and preg_match_all(_EXTRAIRE_MULTI, $letexte, $regs, PREG_SET_ORDER) |
|
| 1703 | + ) { |
|
| 1704 | + if (!$lang) { |
|
| 1705 | + $lang = $GLOBALS['spip_lang']; |
|
| 1706 | + } |
|
| 1707 | + |
|
| 1708 | + // Compatibilité avec le prototype de fonction précédente qui utilisait un boolean |
|
| 1709 | + if (is_bool($options)) { |
|
| 1710 | + $options = array('echappe_span' => $options, 'lang_defaut' => _LANGUE_PAR_DEFAUT); |
|
| 1711 | + } |
|
| 1712 | + if (!isset($options['echappe_span'])) { |
|
| 1713 | + $options = array_merge($options, array('echappe_span' => false)); |
|
| 1714 | + } |
|
| 1715 | + if (!isset($options['lang_defaut'])) { |
|
| 1716 | + $options = array_merge($options, array('lang_defaut' => _LANGUE_PAR_DEFAUT)); |
|
| 1717 | + } |
|
| 1718 | + |
|
| 1719 | + include_spip('inc/lang'); |
|
| 1720 | + foreach ($regs as $reg) { |
|
| 1721 | + // chercher la version de la langue courante |
|
| 1722 | + $trads = extraire_trads($reg[1]); |
|
| 1723 | + if ($l = approcher_langue($trads, $lang)) { |
|
| 1724 | + $trad = $trads[$l]; |
|
| 1725 | + } else { |
|
| 1726 | + if ($options['lang_defaut'] == 'aucune') { |
|
| 1727 | + $trad = ''; |
|
| 1728 | + } else { |
|
| 1729 | + // langue absente, prendre le fr ou une langue précisée (meme comportement que inc/traduire.php) |
|
| 1730 | + // ou la premiere dispo |
|
| 1731 | + // mais typographier le texte selon les regles de celle-ci |
|
| 1732 | + // Attention aux blocs multi sur plusieurs lignes |
|
| 1733 | + if (!$l = approcher_langue($trads, $options['lang_defaut'])) { |
|
| 1734 | + $l = key($trads); |
|
| 1735 | + } |
|
| 1736 | + $trad = $trads[$l]; |
|
| 1737 | + $typographie = charger_fonction(lang_typo($l), 'typographie'); |
|
| 1738 | + $trad = $typographie($trad); |
|
| 1739 | + // Tester si on echappe en span ou en div |
|
| 1740 | + // il ne faut pas echapper en div si propre produit un seul paragraphe |
|
| 1741 | + include_spip('inc/texte'); |
|
| 1742 | + $trad_propre = preg_replace(",(^<p[^>]*>|</p>$),Uims", "", propre($trad)); |
|
| 1743 | + $mode = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $trad_propre) ? 'div' : 'span'; |
|
| 1744 | + if ($mode === 'div') { |
|
| 1745 | + $trad = rtrim($trad) . "\n\n"; |
|
| 1746 | + } |
|
| 1747 | + $trad = code_echappement($trad, 'multi', false, $mode); |
|
| 1748 | + $trad = str_replace("'", '"', inserer_attribut($trad, 'lang', $l)); |
|
| 1749 | + if (lang_dir($l) !== lang_dir($lang)) { |
|
| 1750 | + $trad = str_replace("'", '"', inserer_attribut($trad, 'dir', lang_dir($l))); |
|
| 1751 | + } |
|
| 1752 | + if (!$options['echappe_span']) { |
|
| 1753 | + $trad = echappe_retour($trad, 'multi'); |
|
| 1754 | + } |
|
| 1755 | + } |
|
| 1756 | + } |
|
| 1757 | + $letexte = str_replace($reg[0], $trad, $letexte); |
|
| 1758 | + } |
|
| 1759 | + } |
|
| 1760 | + |
|
| 1761 | + return $letexte; |
|
| 1762 | 1762 | } |
| 1763 | 1763 | |
| 1764 | 1764 | /** |
@@ -1774,20 +1774,20 @@ discard block |
||
| 1774 | 1774 | * Peut retourner un code de langue vide, lorsqu'un texte par défaut est indiqué. |
| 1775 | 1775 | **/ |
| 1776 | 1776 | function extraire_trads($bloc) { |
| 1777 | - $lang = ''; |
|
| 1777 | + $lang = ''; |
|
| 1778 | 1778 | // ce reg fait planter l'analyse multi s'il y a de l'{italique} dans le champ |
| 1779 | 1779 | // while (preg_match("/^(.*?)[{\[]([a-z_]+)[}\]]/siS", $bloc, $regs)) { |
| 1780 | - while (preg_match("/^(.*?)[\[]([a-z_]+)[\]]/siS", $bloc, $regs)) { |
|
| 1781 | - $texte = trim($regs[1]); |
|
| 1782 | - if ($texte or $lang) { |
|
| 1783 | - $trads[$lang] = $texte; |
|
| 1784 | - } |
|
| 1785 | - $bloc = substr($bloc, strlen($regs[0])); |
|
| 1786 | - $lang = $regs[2]; |
|
| 1787 | - } |
|
| 1788 | - $trads[$lang] = $bloc; |
|
| 1780 | + while (preg_match("/^(.*?)[\[]([a-z_]+)[\]]/siS", $bloc, $regs)) { |
|
| 1781 | + $texte = trim($regs[1]); |
|
| 1782 | + if ($texte or $lang) { |
|
| 1783 | + $trads[$lang] = $texte; |
|
| 1784 | + } |
|
| 1785 | + $bloc = substr($bloc, strlen($regs[0])); |
|
| 1786 | + $lang = $regs[2]; |
|
| 1787 | + } |
|
| 1788 | + $trads[$lang] = $bloc; |
|
| 1789 | 1789 | |
| 1790 | - return $trads; |
|
| 1790 | + return $trads; |
|
| 1791 | 1791 | } |
| 1792 | 1792 | |
| 1793 | 1793 | |
@@ -1798,7 +1798,7 @@ discard block |
||
| 1798 | 1798 | * @return string L'initiale en majuscule |
| 1799 | 1799 | */ |
| 1800 | 1800 | function filtre_initiale($nom) { |
| 1801 | - return spip_substr(trim(strtoupper(extraire_multi($nom))), 0, 1); |
|
| 1801 | + return spip_substr(trim(strtoupper(extraire_multi($nom))), 0, 1); |
|
| 1802 | 1802 | } |
| 1803 | 1803 | |
| 1804 | 1804 | |
@@ -1843,33 +1843,33 @@ discard block |
||
| 1843 | 1843 | * - null (interne) : si on empile |
| 1844 | 1844 | **/ |
| 1845 | 1845 | function unique($donnee, $famille = '', $cpt = false) { |
| 1846 | - static $mem = array(); |
|
| 1847 | - // permettre de vider la pile et de la restaurer |
|
| 1848 | - // pour le calcul de introduction... |
|
| 1849 | - if ($famille == '_spip_raz_') { |
|
| 1850 | - $tmp = $mem; |
|
| 1851 | - $mem = array(); |
|
| 1852 | - |
|
| 1853 | - return $tmp; |
|
| 1854 | - } elseif ($famille == '_spip_set_') { |
|
| 1855 | - $mem = $donnee; |
|
| 1856 | - |
|
| 1857 | - return; |
|
| 1858 | - } |
|
| 1859 | - // eviter une notice |
|
| 1860 | - if (!isset($mem[$famille])) { |
|
| 1861 | - $mem[$famille] = array(); |
|
| 1862 | - } |
|
| 1863 | - if ($cpt) { |
|
| 1864 | - return count($mem[$famille]); |
|
| 1865 | - } |
|
| 1866 | - // eviter une notice |
|
| 1867 | - if (!isset($mem[$famille][$donnee])) { |
|
| 1868 | - $mem[$famille][$donnee] = 0; |
|
| 1869 | - } |
|
| 1870 | - if (!($mem[$famille][$donnee]++)) { |
|
| 1871 | - return $donnee; |
|
| 1872 | - } |
|
| 1846 | + static $mem = array(); |
|
| 1847 | + // permettre de vider la pile et de la restaurer |
|
| 1848 | + // pour le calcul de introduction... |
|
| 1849 | + if ($famille == '_spip_raz_') { |
|
| 1850 | + $tmp = $mem; |
|
| 1851 | + $mem = array(); |
|
| 1852 | + |
|
| 1853 | + return $tmp; |
|
| 1854 | + } elseif ($famille == '_spip_set_') { |
|
| 1855 | + $mem = $donnee; |
|
| 1856 | + |
|
| 1857 | + return; |
|
| 1858 | + } |
|
| 1859 | + // eviter une notice |
|
| 1860 | + if (!isset($mem[$famille])) { |
|
| 1861 | + $mem[$famille] = array(); |
|
| 1862 | + } |
|
| 1863 | + if ($cpt) { |
|
| 1864 | + return count($mem[$famille]); |
|
| 1865 | + } |
|
| 1866 | + // eviter une notice |
|
| 1867 | + if (!isset($mem[$famille][$donnee])) { |
|
| 1868 | + $mem[$famille][$donnee] = 0; |
|
| 1869 | + } |
|
| 1870 | + if (!($mem[$famille][$donnee]++)) { |
|
| 1871 | + return $donnee; |
|
| 1872 | + } |
|
| 1873 | 1873 | } |
| 1874 | 1874 | |
| 1875 | 1875 | |
@@ -1899,16 +1899,16 @@ discard block |
||
| 1899 | 1899 | * Une des valeurs en fonction du compteur. |
| 1900 | 1900 | **/ |
| 1901 | 1901 | function alterner($i, ...$args) { |
| 1902 | - // recuperer les arguments (attention fonctions un peu space) |
|
| 1903 | - $num = count($args); |
|
| 1902 | + // recuperer les arguments (attention fonctions un peu space) |
|
| 1903 | + $num = count($args); |
|
| 1904 | 1904 | |
| 1905 | - if ($num === 1 && is_array($args[0])) { |
|
| 1906 | - $args = $args[0]; |
|
| 1907 | - $num = count($args); |
|
| 1908 | - } |
|
| 1905 | + if ($num === 1 && is_array($args[0])) { |
|
| 1906 | + $args = $args[0]; |
|
| 1907 | + $num = count($args); |
|
| 1908 | + } |
|
| 1909 | 1909 | |
| 1910 | - // renvoyer le i-ieme argument, modulo le nombre d'arguments |
|
| 1911 | - return $args[(intval($i) - 1) % $num]; |
|
| 1910 | + // renvoyer le i-ieme argument, modulo le nombre d'arguments |
|
| 1911 | + return $args[(intval($i) - 1) % $num]; |
|
| 1912 | 1912 | } |
| 1913 | 1913 | |
| 1914 | 1914 | |
@@ -1933,46 +1933,46 @@ discard block |
||
| 1933 | 1933 | * - Tableau complet (si 2e argument) |
| 1934 | 1934 | **/ |
| 1935 | 1935 | function extraire_attribut($balise, $attribut, $complet = false) { |
| 1936 | - if (is_array($balise)) { |
|
| 1937 | - array_walk( |
|
| 1938 | - $balise, |
|
| 1939 | - function(&$a, $key, $t){ |
|
| 1940 | - $a = extraire_attribut($a, $t); |
|
| 1941 | - }, |
|
| 1942 | - $attribut |
|
| 1943 | - ); |
|
| 1944 | - |
|
| 1945 | - return $balise; |
|
| 1946 | - } |
|
| 1947 | - if (preg_match( |
|
| 1948 | - ',(^.*?<(?:(?>\s*)(?>[\w:.-]+)(?>(?:=(?:"[^"]*"|\'[^\']*\'|[^\'"]\S*))?))*?)(\s+' |
|
| 1949 | - . $attribut |
|
| 1950 | - . '(?:=\s*("[^"]*"|\'[^\']*\'|[^\'"]\S*))?)()((?:[\s/][^>]*)?>.*),isS', |
|
| 1951 | - |
|
| 1952 | - $balise, $r)) { |
|
| 1953 | - if (isset($r[3][0]) and ($r[3][0] == '"' || $r[3][0] == "'")) { |
|
| 1954 | - $r[4] = substr($r[3], 1, -1); |
|
| 1955 | - $r[3] = $r[3][0]; |
|
| 1956 | - } elseif ($r[3] !== '') { |
|
| 1957 | - $r[4] = $r[3]; |
|
| 1958 | - $r[3] = ''; |
|
| 1959 | - } else { |
|
| 1960 | - $r[4] = trim($r[2]); |
|
| 1961 | - } |
|
| 1962 | - $att = $r[4]; |
|
| 1963 | - if (strpos($att, "&#") !== false) { |
|
| 1964 | - $att = str_replace(array("'", "'", """, """), array("'", "'", '"', '"'), $att); |
|
| 1965 | - } |
|
| 1966 | - $att = filtrer_entites($att); |
|
| 1967 | - } else { |
|
| 1968 | - $att = null; |
|
| 1969 | - } |
|
| 1970 | - |
|
| 1971 | - if ($complet) { |
|
| 1972 | - return array($att, $r); |
|
| 1973 | - } else { |
|
| 1974 | - return $att; |
|
| 1975 | - } |
|
| 1936 | + if (is_array($balise)) { |
|
| 1937 | + array_walk( |
|
| 1938 | + $balise, |
|
| 1939 | + function(&$a, $key, $t){ |
|
| 1940 | + $a = extraire_attribut($a, $t); |
|
| 1941 | + }, |
|
| 1942 | + $attribut |
|
| 1943 | + ); |
|
| 1944 | + |
|
| 1945 | + return $balise; |
|
| 1946 | + } |
|
| 1947 | + if (preg_match( |
|
| 1948 | + ',(^.*?<(?:(?>\s*)(?>[\w:.-]+)(?>(?:=(?:"[^"]*"|\'[^\']*\'|[^\'"]\S*))?))*?)(\s+' |
|
| 1949 | + . $attribut |
|
| 1950 | + . '(?:=\s*("[^"]*"|\'[^\']*\'|[^\'"]\S*))?)()((?:[\s/][^>]*)?>.*),isS', |
|
| 1951 | + |
|
| 1952 | + $balise, $r)) { |
|
| 1953 | + if (isset($r[3][0]) and ($r[3][0] == '"' || $r[3][0] == "'")) { |
|
| 1954 | + $r[4] = substr($r[3], 1, -1); |
|
| 1955 | + $r[3] = $r[3][0]; |
|
| 1956 | + } elseif ($r[3] !== '') { |
|
| 1957 | + $r[4] = $r[3]; |
|
| 1958 | + $r[3] = ''; |
|
| 1959 | + } else { |
|
| 1960 | + $r[4] = trim($r[2]); |
|
| 1961 | + } |
|
| 1962 | + $att = $r[4]; |
|
| 1963 | + if (strpos($att, "&#") !== false) { |
|
| 1964 | + $att = str_replace(array("'", "'", """, """), array("'", "'", '"', '"'), $att); |
|
| 1965 | + } |
|
| 1966 | + $att = filtrer_entites($att); |
|
| 1967 | + } else { |
|
| 1968 | + $att = null; |
|
| 1969 | + } |
|
| 1970 | + |
|
| 1971 | + if ($complet) { |
|
| 1972 | + return array($att, $r); |
|
| 1973 | + } else { |
|
| 1974 | + return $att; |
|
| 1975 | + } |
|
| 1976 | 1976 | } |
| 1977 | 1977 | |
| 1978 | 1978 | /** |
@@ -2004,37 +2004,37 @@ discard block |
||
| 2004 | 2004 | * Code html modifié |
| 2005 | 2005 | **/ |
| 2006 | 2006 | function inserer_attribut($balise, $attribut, $val, $proteger = true, $vider = false) { |
| 2007 | - // preparer l'attribut |
|
| 2008 | - // supprimer les etc mais pas les balises html |
|
| 2009 | - // qui ont un sens dans un attribut value d'un input |
|
| 2010 | - if ($proteger) { |
|
| 2011 | - $val = attribut_html($val, false); |
|
| 2012 | - } |
|
| 2013 | - |
|
| 2014 | - // echapper les ' pour eviter tout bug |
|
| 2015 | - $val = str_replace("'", "'", $val); |
|
| 2016 | - if ($vider and strlen($val) == 0) { |
|
| 2017 | - $insert = ''; |
|
| 2018 | - } else { |
|
| 2019 | - $insert = " $attribut='$val'"; |
|
| 2020 | - } |
|
| 2021 | - |
|
| 2022 | - list($old, $r) = extraire_attribut($balise, $attribut, true); |
|
| 2023 | - |
|
| 2024 | - if ($old !== null) { |
|
| 2025 | - // Remplacer l'ancien attribut du meme nom |
|
| 2026 | - $balise = $r[1] . $insert . $r[5]; |
|
| 2027 | - } else { |
|
| 2028 | - // preferer une balise " />" (comme <img />) |
|
| 2029 | - if (preg_match(',/>,', $balise)) { |
|
| 2030 | - $balise = preg_replace(",\s?/>,S", $insert . " />", $balise, 1); |
|
| 2031 | - } // sinon une balise <a ...> ... </a> |
|
| 2032 | - else { |
|
| 2033 | - $balise = preg_replace(",\s?>,S", $insert . ">", $balise, 1); |
|
| 2034 | - } |
|
| 2035 | - } |
|
| 2036 | - |
|
| 2037 | - return $balise; |
|
| 2007 | + // preparer l'attribut |
|
| 2008 | + // supprimer les etc mais pas les balises html |
|
| 2009 | + // qui ont un sens dans un attribut value d'un input |
|
| 2010 | + if ($proteger) { |
|
| 2011 | + $val = attribut_html($val, false); |
|
| 2012 | + } |
|
| 2013 | + |
|
| 2014 | + // echapper les ' pour eviter tout bug |
|
| 2015 | + $val = str_replace("'", "'", $val); |
|
| 2016 | + if ($vider and strlen($val) == 0) { |
|
| 2017 | + $insert = ''; |
|
| 2018 | + } else { |
|
| 2019 | + $insert = " $attribut='$val'"; |
|
| 2020 | + } |
|
| 2021 | + |
|
| 2022 | + list($old, $r) = extraire_attribut($balise, $attribut, true); |
|
| 2023 | + |
|
| 2024 | + if ($old !== null) { |
|
| 2025 | + // Remplacer l'ancien attribut du meme nom |
|
| 2026 | + $balise = $r[1] . $insert . $r[5]; |
|
| 2027 | + } else { |
|
| 2028 | + // preferer une balise " />" (comme <img />) |
|
| 2029 | + if (preg_match(',/>,', $balise)) { |
|
| 2030 | + $balise = preg_replace(",\s?/>,S", $insert . " />", $balise, 1); |
|
| 2031 | + } // sinon une balise <a ...> ... </a> |
|
| 2032 | + else { |
|
| 2033 | + $balise = preg_replace(",\s?>,S", $insert . ">", $balise, 1); |
|
| 2034 | + } |
|
| 2035 | + } |
|
| 2036 | + |
|
| 2037 | + return $balise; |
|
| 2038 | 2038 | } |
| 2039 | 2039 | |
| 2040 | 2040 | /** |
@@ -2052,7 +2052,7 @@ discard block |
||
| 2052 | 2052 | * @return string Code HTML sans l'attribut |
| 2053 | 2053 | **/ |
| 2054 | 2054 | function vider_attribut($balise, $attribut) { |
| 2055 | - return inserer_attribut($balise, $attribut, '', false, true); |
|
| 2055 | + return inserer_attribut($balise, $attribut, '', false, true); |
|
| 2056 | 2056 | } |
| 2057 | 2057 | |
| 2058 | 2058 | /** |
@@ -2064,50 +2064,50 @@ discard block |
||
| 2064 | 2064 | * @return string |
| 2065 | 2065 | */ |
| 2066 | 2066 | function modifier_class($balise, $class, $operation='ajouter') { |
| 2067 | - if (is_string($class)) { |
|
| 2068 | - $class = explode(' ', trim($class)); |
|
| 2069 | - } |
|
| 2070 | - $class = array_filter($class); |
|
| 2071 | - |
|
| 2072 | - // si la ou les classes ont des caracteres invalides on ne fait rien |
|
| 2073 | - if (preg_match(",[^\w-],", implode('', $class))) { |
|
| 2074 | - return $balise; |
|
| 2075 | - } |
|
| 2076 | - |
|
| 2077 | - if ($class) { |
|
| 2078 | - $class = array_unique($class); |
|
| 2079 | - $class_courante = extraire_attribut($balise, 'class'); |
|
| 2080 | - |
|
| 2081 | - $class_new = $class_courante; |
|
| 2082 | - foreach ($class as $c) { |
|
| 2083 | - if ($c) { |
|
| 2084 | - $is_class_presente = false; |
|
| 2085 | - if (strpos($class_courante, $c) !== false |
|
| 2086 | - and preg_match("/(^|\s)".preg_quote($c)."($|\s)/", $class_courante)) { |
|
| 2087 | - $is_class_presente = true; |
|
| 2088 | - } |
|
| 2089 | - if (in_array($operation, ['ajouter', 'commuter']) |
|
| 2090 | - and !$is_class_presente) { |
|
| 2091 | - $class_new = rtrim($class_new) . " " . $c; |
|
| 2092 | - } |
|
| 2093 | - elseif (in_array($operation, ['supprimer', 'commuter']) |
|
| 2094 | - and $is_class_presente) { |
|
| 2095 | - $class_new = trim(preg_replace("/(^|\s)".preg_quote($c)."($|\s)/", "\\1", $class_new)); |
|
| 2096 | - } |
|
| 2097 | - } |
|
| 2098 | - } |
|
| 2099 | - |
|
| 2100 | - if ($class_new !== $class_courante) { |
|
| 2101 | - if (strlen($class_new)) { |
|
| 2102 | - $balise = inserer_attribut($balise, 'class', $class_new); |
|
| 2103 | - } |
|
| 2104 | - elseif ($class_courante) { |
|
| 2105 | - $balise = vider_attribut($balise, 'class'); |
|
| 2106 | - } |
|
| 2107 | - } |
|
| 2108 | - } |
|
| 2109 | - |
|
| 2110 | - return $balise; |
|
| 2067 | + if (is_string($class)) { |
|
| 2068 | + $class = explode(' ', trim($class)); |
|
| 2069 | + } |
|
| 2070 | + $class = array_filter($class); |
|
| 2071 | + |
|
| 2072 | + // si la ou les classes ont des caracteres invalides on ne fait rien |
|
| 2073 | + if (preg_match(",[^\w-],", implode('', $class))) { |
|
| 2074 | + return $balise; |
|
| 2075 | + } |
|
| 2076 | + |
|
| 2077 | + if ($class) { |
|
| 2078 | + $class = array_unique($class); |
|
| 2079 | + $class_courante = extraire_attribut($balise, 'class'); |
|
| 2080 | + |
|
| 2081 | + $class_new = $class_courante; |
|
| 2082 | + foreach ($class as $c) { |
|
| 2083 | + if ($c) { |
|
| 2084 | + $is_class_presente = false; |
|
| 2085 | + if (strpos($class_courante, $c) !== false |
|
| 2086 | + and preg_match("/(^|\s)".preg_quote($c)."($|\s)/", $class_courante)) { |
|
| 2087 | + $is_class_presente = true; |
|
| 2088 | + } |
|
| 2089 | + if (in_array($operation, ['ajouter', 'commuter']) |
|
| 2090 | + and !$is_class_presente) { |
|
| 2091 | + $class_new = rtrim($class_new) . " " . $c; |
|
| 2092 | + } |
|
| 2093 | + elseif (in_array($operation, ['supprimer', 'commuter']) |
|
| 2094 | + and $is_class_presente) { |
|
| 2095 | + $class_new = trim(preg_replace("/(^|\s)".preg_quote($c)."($|\s)/", "\\1", $class_new)); |
|
| 2096 | + } |
|
| 2097 | + } |
|
| 2098 | + } |
|
| 2099 | + |
|
| 2100 | + if ($class_new !== $class_courante) { |
|
| 2101 | + if (strlen($class_new)) { |
|
| 2102 | + $balise = inserer_attribut($balise, 'class', $class_new); |
|
| 2103 | + } |
|
| 2104 | + elseif ($class_courante) { |
|
| 2105 | + $balise = vider_attribut($balise, 'class'); |
|
| 2106 | + } |
|
| 2107 | + } |
|
| 2108 | + } |
|
| 2109 | + |
|
| 2110 | + return $balise; |
|
| 2111 | 2111 | } |
| 2112 | 2112 | |
| 2113 | 2113 | /** |
@@ -2117,7 +2117,7 @@ discard block |
||
| 2117 | 2117 | * @return string |
| 2118 | 2118 | */ |
| 2119 | 2119 | function ajouter_class($balise, $class){ |
| 2120 | - return modifier_class($balise, $class, 'ajouter'); |
|
| 2120 | + return modifier_class($balise, $class, 'ajouter'); |
|
| 2121 | 2121 | } |
| 2122 | 2122 | |
| 2123 | 2123 | /** |
@@ -2127,7 +2127,7 @@ discard block |
||
| 2127 | 2127 | * @return string |
| 2128 | 2128 | */ |
| 2129 | 2129 | function supprimer_class($balise, $class){ |
| 2130 | - return modifier_class($balise, $class, 'supprimer'); |
|
| 2130 | + return modifier_class($balise, $class, 'supprimer'); |
|
| 2131 | 2131 | } |
| 2132 | 2132 | |
| 2133 | 2133 | /** |
@@ -2138,7 +2138,7 @@ discard block |
||
| 2138 | 2138 | * @return string |
| 2139 | 2139 | */ |
| 2140 | 2140 | function commuter_class($balise, $class){ |
| 2141 | - return modifier_class($balise, $class, 'commuter'); |
|
| 2141 | + return modifier_class($balise, $class, 'commuter'); |
|
| 2142 | 2142 | } |
| 2143 | 2143 | |
| 2144 | 2144 | /** |
@@ -2149,9 +2149,9 @@ discard block |
||
| 2149 | 2149 | * @return string |
| 2150 | 2150 | */ |
| 2151 | 2151 | function tester_config($id, $mode = '') { |
| 2152 | - include_spip('action/inscrire_auteur'); |
|
| 2152 | + include_spip('action/inscrire_auteur'); |
|
| 2153 | 2153 | |
| 2154 | - return tester_statut_inscription($mode, $id); |
|
| 2154 | + return tester_statut_inscription($mode, $id); |
|
| 2155 | 2155 | } |
| 2156 | 2156 | |
| 2157 | 2157 | // |
@@ -2176,7 +2176,7 @@ discard block |
||
| 2176 | 2176 | * @return int $a+$b |
| 2177 | 2177 | **/ |
| 2178 | 2178 | function plus($a, $b) { |
| 2179 | - return $a + $b; |
|
| 2179 | + return $a + $b; |
|
| 2180 | 2180 | } |
| 2181 | 2181 | function strplus($a, $b) {return strize('plus', $a, $b);} |
| 2182 | 2182 | /** |
@@ -2195,7 +2195,7 @@ discard block |
||
| 2195 | 2195 | * @return int $a-$b |
| 2196 | 2196 | **/ |
| 2197 | 2197 | function moins($a, $b) { |
| 2198 | - return $a - $b; |
|
| 2198 | + return $a - $b; |
|
| 2199 | 2199 | } |
| 2200 | 2200 | function strmoins($a, $b) {return strize('moins', $a, $b);} |
| 2201 | 2201 | |
@@ -2216,7 +2216,7 @@ discard block |
||
| 2216 | 2216 | * @return int $a*$b |
| 2217 | 2217 | **/ |
| 2218 | 2218 | function mult($a, $b) { |
| 2219 | - return $a * $b; |
|
| 2219 | + return $a * $b; |
|
| 2220 | 2220 | } |
| 2221 | 2221 | function strmult($a, $b) {return strize('mult', $a, $b);} |
| 2222 | 2222 | |
@@ -2237,7 +2237,7 @@ discard block |
||
| 2237 | 2237 | * @return int $a/$b (ou 0 si $b est nul) |
| 2238 | 2238 | **/ |
| 2239 | 2239 | function div($a, $b) { |
| 2240 | - return $b ? $a / $b : 0; |
|
| 2240 | + return $b ? $a / $b : 0; |
|
| 2241 | 2241 | } |
| 2242 | 2242 | function strdiv($a, $b) {return strize('div', $a, $b);} |
| 2243 | 2243 | |
@@ -2259,7 +2259,7 @@ discard block |
||
| 2259 | 2259 | * @return int ($nb % $mod) + $add |
| 2260 | 2260 | **/ |
| 2261 | 2261 | function modulo($nb, $mod, $add = 0) { |
| 2262 | - return ($mod ? $nb % $mod : 0) + $add; |
|
| 2262 | + return ($mod ? $nb % $mod : 0) + $add; |
|
| 2263 | 2263 | } |
| 2264 | 2264 | |
| 2265 | 2265 | |
@@ -2274,24 +2274,24 @@ discard block |
||
| 2274 | 2274 | * - true sinon |
| 2275 | 2275 | **/ |
| 2276 | 2276 | function nom_acceptable($nom) { |
| 2277 | - if (!is_string($nom)) { |
|
| 2278 | - return false; |
|
| 2279 | - } |
|
| 2280 | - if (!defined('_TAGS_NOM_AUTEUR')) { |
|
| 2281 | - define('_TAGS_NOM_AUTEUR', ''); |
|
| 2282 | - } |
|
| 2283 | - $tags_acceptes = array_unique(explode(',', 'multi,' . _TAGS_NOM_AUTEUR)); |
|
| 2284 | - foreach ($tags_acceptes as $tag) { |
|
| 2285 | - if (strlen($tag)) { |
|
| 2286 | - $remp1[] = '<' . trim($tag) . '>'; |
|
| 2287 | - $remp1[] = '</' . trim($tag) . '>'; |
|
| 2288 | - $remp2[] = '\x60' . trim($tag) . '\x61'; |
|
| 2289 | - $remp2[] = '\x60/' . trim($tag) . '\x61'; |
|
| 2290 | - } |
|
| 2291 | - } |
|
| 2292 | - $v_nom = str_replace($remp2, $remp1, supprimer_tags(str_replace($remp1, $remp2, $nom))); |
|
| 2277 | + if (!is_string($nom)) { |
|
| 2278 | + return false; |
|
| 2279 | + } |
|
| 2280 | + if (!defined('_TAGS_NOM_AUTEUR')) { |
|
| 2281 | + define('_TAGS_NOM_AUTEUR', ''); |
|
| 2282 | + } |
|
| 2283 | + $tags_acceptes = array_unique(explode(',', 'multi,' . _TAGS_NOM_AUTEUR)); |
|
| 2284 | + foreach ($tags_acceptes as $tag) { |
|
| 2285 | + if (strlen($tag)) { |
|
| 2286 | + $remp1[] = '<' . trim($tag) . '>'; |
|
| 2287 | + $remp1[] = '</' . trim($tag) . '>'; |
|
| 2288 | + $remp2[] = '\x60' . trim($tag) . '\x61'; |
|
| 2289 | + $remp2[] = '\x60/' . trim($tag) . '\x61'; |
|
| 2290 | + } |
|
| 2291 | + } |
|
| 2292 | + $v_nom = str_replace($remp2, $remp1, supprimer_tags(str_replace($remp1, $remp2, $nom))); |
|
| 2293 | 2293 | |
| 2294 | - return str_replace('<', '<', $v_nom) == $nom; |
|
| 2294 | + return str_replace('<', '<', $v_nom) == $nom; |
|
| 2295 | 2295 | } |
| 2296 | 2296 | |
| 2297 | 2297 | |
@@ -2307,14 +2307,14 @@ discard block |
||
| 2307 | 2307 | * - renvoie un tableau si l'entree est un tableau |
| 2308 | 2308 | **/ |
| 2309 | 2309 | function email_valide($adresses) { |
| 2310 | - if (is_array($adresses)) { |
|
| 2311 | - $adresses = array_map('email_valide', $adresses); |
|
| 2312 | - $adresses = array_filter($adresses); |
|
| 2313 | - return $adresses; |
|
| 2314 | - } |
|
| 2310 | + if (is_array($adresses)) { |
|
| 2311 | + $adresses = array_map('email_valide', $adresses); |
|
| 2312 | + $adresses = array_filter($adresses); |
|
| 2313 | + return $adresses; |
|
| 2314 | + } |
|
| 2315 | 2315 | |
| 2316 | - $email_valide = charger_fonction('email_valide', 'inc'); |
|
| 2317 | - return $email_valide($adresses); |
|
| 2316 | + $email_valide = charger_fonction('email_valide', 'inc'); |
|
| 2317 | + return $email_valide($adresses); |
|
| 2318 | 2318 | } |
| 2319 | 2319 | |
| 2320 | 2320 | /** |
@@ -2328,20 +2328,20 @@ discard block |
||
| 2328 | 2328 | * @return string Texte |
| 2329 | 2329 | **/ |
| 2330 | 2330 | function afficher_enclosures($tags) { |
| 2331 | - $s = array(); |
|
| 2332 | - foreach (extraire_balises($tags, 'a') as $tag) { |
|
| 2333 | - if (extraire_attribut($tag, 'rel') == 'enclosure' |
|
| 2334 | - and $t = extraire_attribut($tag, 'href') |
|
| 2335 | - ) { |
|
| 2336 | - $s[] = preg_replace(',>[^<]+</a>,S', |
|
| 2337 | - '>' |
|
| 2338 | - . http_img_pack('attachment-16.png', $t, |
|
| 2339 | - 'title="' . attribut_html($t) . '"') |
|
| 2340 | - . '</a>', $tag); |
|
| 2341 | - } |
|
| 2342 | - } |
|
| 2331 | + $s = array(); |
|
| 2332 | + foreach (extraire_balises($tags, 'a') as $tag) { |
|
| 2333 | + if (extraire_attribut($tag, 'rel') == 'enclosure' |
|
| 2334 | + and $t = extraire_attribut($tag, 'href') |
|
| 2335 | + ) { |
|
| 2336 | + $s[] = preg_replace(',>[^<]+</a>,S', |
|
| 2337 | + '>' |
|
| 2338 | + . http_img_pack('attachment-16.png', $t, |
|
| 2339 | + 'title="' . attribut_html($t) . '"') |
|
| 2340 | + . '</a>', $tag); |
|
| 2341 | + } |
|
| 2342 | + } |
|
| 2343 | 2343 | |
| 2344 | - return join(' ', $s); |
|
| 2344 | + return join(' ', $s); |
|
| 2345 | 2345 | } |
| 2346 | 2346 | |
| 2347 | 2347 | /** |
@@ -2356,15 +2356,15 @@ discard block |
||
| 2356 | 2356 | * @return string Liens trouvés |
| 2357 | 2357 | **/ |
| 2358 | 2358 | function afficher_tags($tags, $rels = 'tag,directory') { |
| 2359 | - $s = array(); |
|
| 2360 | - foreach (extraire_balises($tags, 'a') as $tag) { |
|
| 2361 | - $rel = extraire_attribut($tag, 'rel'); |
|
| 2362 | - if (strstr(",$rels,", ",$rel,")) { |
|
| 2363 | - $s[] = $tag; |
|
| 2364 | - } |
|
| 2365 | - } |
|
| 2359 | + $s = array(); |
|
| 2360 | + foreach (extraire_balises($tags, 'a') as $tag) { |
|
| 2361 | + $rel = extraire_attribut($tag, 'rel'); |
|
| 2362 | + if (strstr(",$rels,", ",$rel,")) { |
|
| 2363 | + $s[] = $tag; |
|
| 2364 | + } |
|
| 2365 | + } |
|
| 2366 | 2366 | |
| 2367 | - return join(', ', $s); |
|
| 2367 | + return join(', ', $s); |
|
| 2368 | 2368 | } |
| 2369 | 2369 | |
| 2370 | 2370 | |
@@ -2386,21 +2386,21 @@ discard block |
||
| 2386 | 2386 | * @return string Tag HTML `<a>` avec microformat. |
| 2387 | 2387 | **/ |
| 2388 | 2388 | function enclosure2microformat($e) { |
| 2389 | - if (!$url = filtrer_entites(extraire_attribut($e, 'url'))) { |
|
| 2390 | - $url = filtrer_entites(extraire_attribut($e, 'href')); |
|
| 2391 | - } |
|
| 2392 | - $type = extraire_attribut($e, 'type'); |
|
| 2393 | - if (!$length = extraire_attribut($e, 'length')) { |
|
| 2394 | - # <media:content : longeur dans fileSize. On tente. |
|
| 2395 | - $length = extraire_attribut($e, 'fileSize'); |
|
| 2396 | - } |
|
| 2397 | - $fichier = basename($url); |
|
| 2389 | + if (!$url = filtrer_entites(extraire_attribut($e, 'url'))) { |
|
| 2390 | + $url = filtrer_entites(extraire_attribut($e, 'href')); |
|
| 2391 | + } |
|
| 2392 | + $type = extraire_attribut($e, 'type'); |
|
| 2393 | + if (!$length = extraire_attribut($e, 'length')) { |
|
| 2394 | + # <media:content : longeur dans fileSize. On tente. |
|
| 2395 | + $length = extraire_attribut($e, 'fileSize'); |
|
| 2396 | + } |
|
| 2397 | + $fichier = basename($url); |
|
| 2398 | 2398 | |
| 2399 | - return '<a rel="enclosure"' |
|
| 2400 | - . ($url ? ' href="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2401 | - . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2402 | - . ($length ? ' title="' . spip_htmlspecialchars($length) . '"' : '') |
|
| 2403 | - . '>' . $fichier . '</a>'; |
|
| 2399 | + return '<a rel="enclosure"' |
|
| 2400 | + . ($url ? ' href="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2401 | + . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2402 | + . ($length ? ' title="' . spip_htmlspecialchars($length) . '"' : '') |
|
| 2403 | + . '>' . $fichier . '</a>'; |
|
| 2404 | 2404 | } |
| 2405 | 2405 | |
| 2406 | 2406 | /** |
@@ -2418,24 +2418,24 @@ discard block |
||
| 2418 | 2418 | * @return string Tags RSS `<enclosure>`. |
| 2419 | 2419 | **/ |
| 2420 | 2420 | function microformat2enclosure($tags) { |
| 2421 | - $enclosures = array(); |
|
| 2422 | - foreach (extraire_balises($tags, 'a') as $e) { |
|
| 2423 | - if (extraire_attribut($e, 'rel') == 'enclosure') { |
|
| 2424 | - $url = filtrer_entites(extraire_attribut($e, 'href')); |
|
| 2425 | - $type = extraire_attribut($e, 'type'); |
|
| 2426 | - if (!$length = intval(extraire_attribut($e, 'title'))) { |
|
| 2427 | - $length = intval(extraire_attribut($e, 'length')); |
|
| 2428 | - } # vieux data |
|
| 2429 | - $fichier = basename($url); |
|
| 2430 | - $enclosures[] = '<enclosure' |
|
| 2431 | - . ($url ? ' url="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2432 | - . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2433 | - . ($length ? ' length="' . $length . '"' : '') |
|
| 2434 | - . ' />'; |
|
| 2435 | - } |
|
| 2436 | - } |
|
| 2421 | + $enclosures = array(); |
|
| 2422 | + foreach (extraire_balises($tags, 'a') as $e) { |
|
| 2423 | + if (extraire_attribut($e, 'rel') == 'enclosure') { |
|
| 2424 | + $url = filtrer_entites(extraire_attribut($e, 'href')); |
|
| 2425 | + $type = extraire_attribut($e, 'type'); |
|
| 2426 | + if (!$length = intval(extraire_attribut($e, 'title'))) { |
|
| 2427 | + $length = intval(extraire_attribut($e, 'length')); |
|
| 2428 | + } # vieux data |
|
| 2429 | + $fichier = basename($url); |
|
| 2430 | + $enclosures[] = '<enclosure' |
|
| 2431 | + . ($url ? ' url="' . spip_htmlspecialchars($url) . '"' : '') |
|
| 2432 | + . ($type ? ' type="' . spip_htmlspecialchars($type) . '"' : '') |
|
| 2433 | + . ($length ? ' length="' . $length . '"' : '') |
|
| 2434 | + . ' />'; |
|
| 2435 | + } |
|
| 2436 | + } |
|
| 2437 | 2437 | |
| 2438 | - return join("\n", $enclosures); |
|
| 2438 | + return join("\n", $enclosures); |
|
| 2439 | 2439 | } |
| 2440 | 2440 | |
| 2441 | 2441 | |
@@ -2451,16 +2451,16 @@ discard block |
||
| 2451 | 2451 | * @return string Tags RSS Atom `<dc:subject>`. |
| 2452 | 2452 | **/ |
| 2453 | 2453 | function tags2dcsubject($tags) { |
| 2454 | - $subjects = ''; |
|
| 2455 | - foreach (extraire_balises($tags, 'a') as $e) { |
|
| 2456 | - if (extraire_attribut($e, 'rel') == 'tag') { |
|
| 2457 | - $subjects .= '<dc:subject>' |
|
| 2458 | - . texte_backend(textebrut($e)) |
|
| 2459 | - . '</dc:subject>' . "\n"; |
|
| 2460 | - } |
|
| 2461 | - } |
|
| 2454 | + $subjects = ''; |
|
| 2455 | + foreach (extraire_balises($tags, 'a') as $e) { |
|
| 2456 | + if (extraire_attribut($e, 'rel') == 'tag') { |
|
| 2457 | + $subjects .= '<dc:subject>' |
|
| 2458 | + . texte_backend(textebrut($e)) |
|
| 2459 | + . '</dc:subject>' . "\n"; |
|
| 2460 | + } |
|
| 2461 | + } |
|
| 2462 | 2462 | |
| 2463 | - return $subjects; |
|
| 2463 | + return $subjects; |
|
| 2464 | 2464 | } |
| 2465 | 2465 | |
| 2466 | 2466 | /** |
@@ -2489,23 +2489,23 @@ discard block |
||
| 2489 | 2489 | * - Tableau de résultats, si tableau en entrée. |
| 2490 | 2490 | **/ |
| 2491 | 2491 | function extraire_balise($texte, $tag = 'a') { |
| 2492 | - if (is_array($texte)) { |
|
| 2493 | - array_walk( |
|
| 2494 | - $texte, |
|
| 2495 | - function(&$a, $key, $t){ |
|
| 2496 | - $a = extraire_balise($a, $t); |
|
| 2497 | - }, |
|
| 2498 | - $tag |
|
| 2499 | - ); |
|
| 2492 | + if (is_array($texte)) { |
|
| 2493 | + array_walk( |
|
| 2494 | + $texte, |
|
| 2495 | + function(&$a, $key, $t){ |
|
| 2496 | + $a = extraire_balise($a, $t); |
|
| 2497 | + }, |
|
| 2498 | + $tag |
|
| 2499 | + ); |
|
| 2500 | 2500 | |
| 2501 | - return $texte; |
|
| 2502 | - } |
|
| 2501 | + return $texte; |
|
| 2502 | + } |
|
| 2503 | 2503 | |
| 2504 | - if (preg_match( |
|
| 2505 | - ",<$tag\b[^>]*(/>|>.*</$tag\b[^>]*>|>),UimsS", |
|
| 2506 | - $texte, $regs)) { |
|
| 2507 | - return $regs[0]; |
|
| 2508 | - } |
|
| 2504 | + if (preg_match( |
|
| 2505 | + ",<$tag\b[^>]*(/>|>.*</$tag\b[^>]*>|>),UimsS", |
|
| 2506 | + $texte, $regs)) { |
|
| 2507 | + return $regs[0]; |
|
| 2508 | + } |
|
| 2509 | 2509 | } |
| 2510 | 2510 | |
| 2511 | 2511 | /** |
@@ -2533,25 +2533,25 @@ discard block |
||
| 2533 | 2533 | * - Tableau de résultats, si tableau en entrée. |
| 2534 | 2534 | **/ |
| 2535 | 2535 | function extraire_balises($texte, $tag = 'a') { |
| 2536 | - if (is_array($texte)) { |
|
| 2537 | - array_walk( |
|
| 2538 | - $texte, |
|
| 2539 | - function(&$a, $key, $t){ |
|
| 2540 | - $a = extraire_balises($a, $t); |
|
| 2541 | - }, |
|
| 2542 | - $tag |
|
| 2543 | - ); |
|
| 2536 | + if (is_array($texte)) { |
|
| 2537 | + array_walk( |
|
| 2538 | + $texte, |
|
| 2539 | + function(&$a, $key, $t){ |
|
| 2540 | + $a = extraire_balises($a, $t); |
|
| 2541 | + }, |
|
| 2542 | + $tag |
|
| 2543 | + ); |
|
| 2544 | 2544 | |
| 2545 | - return $texte; |
|
| 2546 | - } |
|
| 2545 | + return $texte; |
|
| 2546 | + } |
|
| 2547 | 2547 | |
| 2548 | - if (preg_match_all( |
|
| 2549 | - ",<${tag}\b[^>]*(/>|>.*</${tag}\b[^>]*>|>),UimsS", |
|
| 2550 | - $texte, $regs, PREG_PATTERN_ORDER)) { |
|
| 2551 | - return $regs[0]; |
|
| 2552 | - } else { |
|
| 2553 | - return array(); |
|
| 2554 | - } |
|
| 2548 | + if (preg_match_all( |
|
| 2549 | + ",<${tag}\b[^>]*(/>|>.*</${tag}\b[^>]*>|>),UimsS", |
|
| 2550 | + $texte, $regs, PREG_PATTERN_ORDER)) { |
|
| 2551 | + return $regs[0]; |
|
| 2552 | + } else { |
|
| 2553 | + return array(); |
|
| 2554 | + } |
|
| 2555 | 2555 | } |
| 2556 | 2556 | |
| 2557 | 2557 | /** |
@@ -2580,11 +2580,11 @@ discard block |
||
| 2580 | 2580 | * - `$def` si on n'a pas transmis de tableau |
| 2581 | 2581 | **/ |
| 2582 | 2582 | function in_any($val, $vals, $def = '') { |
| 2583 | - if (!is_array($vals) and $v = unserialize($vals)) { |
|
| 2584 | - $vals = $v; |
|
| 2585 | - } |
|
| 2583 | + if (!is_array($vals) and $v = unserialize($vals)) { |
|
| 2584 | + $vals = $v; |
|
| 2585 | + } |
|
| 2586 | 2586 | |
| 2587 | - return (!is_array($vals) ? $def : (in_array($val, $vals) ? ' ' : '')); |
|
| 2587 | + return (!is_array($vals) ? $def : (in_array($val, $vals) ? ' ' : '')); |
|
| 2588 | 2588 | } |
| 2589 | 2589 | |
| 2590 | 2590 | |
@@ -2605,12 +2605,12 @@ discard block |
||
| 2605 | 2605 | * Résultat du calcul |
| 2606 | 2606 | **/ |
| 2607 | 2607 | function valeur_numerique($expr) { |
| 2608 | - $a = 0; |
|
| 2609 | - if (preg_match(',^[0-9]+(\s*[+*-]\s*[0-9]+)*$,S', trim($expr))) { |
|
| 2610 | - eval("\$a = $expr;"); |
|
| 2611 | - } |
|
| 2608 | + $a = 0; |
|
| 2609 | + if (preg_match(',^[0-9]+(\s*[+*-]\s*[0-9]+)*$,S', trim($expr))) { |
|
| 2610 | + eval("\$a = $expr;"); |
|
| 2611 | + } |
|
| 2612 | 2612 | |
| 2613 | - return intval($a); |
|
| 2613 | + return intval($a); |
|
| 2614 | 2614 | } |
| 2615 | 2615 | |
| 2616 | 2616 | /** |
@@ -2629,7 +2629,7 @@ discard block |
||
| 2629 | 2629 | * Retourne `$a*$b/$c` |
| 2630 | 2630 | **/ |
| 2631 | 2631 | function regledetrois($a, $b, $c) { |
| 2632 | - return round($a * $b / $c); |
|
| 2632 | + return round($a * $b / $c); |
|
| 2633 | 2633 | } |
| 2634 | 2634 | |
| 2635 | 2635 | |
@@ -2653,76 +2653,76 @@ discard block |
||
| 2653 | 2653 | **/ |
| 2654 | 2654 | function form_hidden($action) { |
| 2655 | 2655 | |
| 2656 | - $contexte = array(); |
|
| 2657 | - include_spip('inc/urls'); |
|
| 2658 | - if ($p = urls_decoder_url($action, '') |
|
| 2659 | - and reset($p) |
|
| 2660 | - ) { |
|
| 2661 | - $fond = array_shift($p); |
|
| 2662 | - if ($fond != '404') { |
|
| 2663 | - $contexte = array_shift($p); |
|
| 2664 | - $contexte['page'] = $fond; |
|
| 2665 | - $action = preg_replace('/([?]' . preg_quote($fond) . '[^&=]*[0-9]+)(&|$)/', '?&', $action); |
|
| 2666 | - } |
|
| 2667 | - } |
|
| 2668 | - // defaire ce qu'a injecte urls_decoder_url : a revoir en modifiant la signature de urls_decoder_url |
|
| 2669 | - if (defined('_DEFINIR_CONTEXTE_TYPE') and _DEFINIR_CONTEXTE_TYPE) { |
|
| 2670 | - unset($contexte['type']); |
|
| 2671 | - } |
|
| 2672 | - if (!defined('_DEFINIR_CONTEXTE_TYPE_PAGE') or _DEFINIR_CONTEXTE_TYPE_PAGE) { |
|
| 2673 | - unset($contexte['type-page']); |
|
| 2674 | - } |
|
| 2675 | - |
|
| 2676 | - // on va remplir un tableau de valeurs en prenant bien soin de ne pas |
|
| 2677 | - // ecraser les elements de la forme mots[]=1&mots[]=2 |
|
| 2678 | - $values = array(); |
|
| 2679 | - |
|
| 2680 | - // d'abord avec celles de l'url |
|
| 2681 | - if (false !== ($p = strpos($action, '?'))) { |
|
| 2682 | - foreach (preg_split('/&(amp;)?/S', substr($action, $p + 1)) as $c) { |
|
| 2683 | - $c = explode('=', $c, 2); |
|
| 2684 | - $var = array_shift($c); |
|
| 2685 | - $val = array_shift($c); |
|
| 2686 | - if ($var) { |
|
| 2687 | - $val = rawurldecode($val); |
|
| 2688 | - $var = rawurldecode($var); // decoder les [] eventuels |
|
| 2689 | - if (preg_match(',\[\]$,S', $var)) { |
|
| 2690 | - $values[] = array($var, $val); |
|
| 2691 | - } else { |
|
| 2692 | - if (!isset($values[$var])) { |
|
| 2693 | - $values[$var] = array($var, $val); |
|
| 2694 | - } |
|
| 2695 | - } |
|
| 2696 | - } |
|
| 2697 | - } |
|
| 2698 | - } |
|
| 2699 | - |
|
| 2700 | - // ensuite avec celles du contexte, sans doublonner ! |
|
| 2701 | - foreach ($contexte as $var => $val) { |
|
| 2702 | - if (preg_match(',\[\]$,S', $var)) { |
|
| 2703 | - $values[] = array($var, $val); |
|
| 2704 | - } else { |
|
| 2705 | - if (!isset($values[$var])) { |
|
| 2706 | - $values[$var] = array($var, $val); |
|
| 2707 | - } |
|
| 2708 | - } |
|
| 2709 | - } |
|
| 2710 | - |
|
| 2711 | - // puis on rassemble le tout |
|
| 2712 | - $hidden = array(); |
|
| 2713 | - foreach ($values as $value) { |
|
| 2714 | - list($var, $val) = $value; |
|
| 2715 | - $hidden[] = '<input name="' |
|
| 2716 | - . entites_html($var) |
|
| 2717 | - . '"' |
|
| 2718 | - . (is_null($val) |
|
| 2719 | - ? '' |
|
| 2720 | - : ' value="' . entites_html($val) . '"' |
|
| 2721 | - ) |
|
| 2722 | - . ' type="hidden"' . "\n/>"; |
|
| 2723 | - } |
|
| 2724 | - |
|
| 2725 | - return join("", $hidden); |
|
| 2656 | + $contexte = array(); |
|
| 2657 | + include_spip('inc/urls'); |
|
| 2658 | + if ($p = urls_decoder_url($action, '') |
|
| 2659 | + and reset($p) |
|
| 2660 | + ) { |
|
| 2661 | + $fond = array_shift($p); |
|
| 2662 | + if ($fond != '404') { |
|
| 2663 | + $contexte = array_shift($p); |
|
| 2664 | + $contexte['page'] = $fond; |
|
| 2665 | + $action = preg_replace('/([?]' . preg_quote($fond) . '[^&=]*[0-9]+)(&|$)/', '?&', $action); |
|
| 2666 | + } |
|
| 2667 | + } |
|
| 2668 | + // defaire ce qu'a injecte urls_decoder_url : a revoir en modifiant la signature de urls_decoder_url |
|
| 2669 | + if (defined('_DEFINIR_CONTEXTE_TYPE') and _DEFINIR_CONTEXTE_TYPE) { |
|
| 2670 | + unset($contexte['type']); |
|
| 2671 | + } |
|
| 2672 | + if (!defined('_DEFINIR_CONTEXTE_TYPE_PAGE') or _DEFINIR_CONTEXTE_TYPE_PAGE) { |
|
| 2673 | + unset($contexte['type-page']); |
|
| 2674 | + } |
|
| 2675 | + |
|
| 2676 | + // on va remplir un tableau de valeurs en prenant bien soin de ne pas |
|
| 2677 | + // ecraser les elements de la forme mots[]=1&mots[]=2 |
|
| 2678 | + $values = array(); |
|
| 2679 | + |
|
| 2680 | + // d'abord avec celles de l'url |
|
| 2681 | + if (false !== ($p = strpos($action, '?'))) { |
|
| 2682 | + foreach (preg_split('/&(amp;)?/S', substr($action, $p + 1)) as $c) { |
|
| 2683 | + $c = explode('=', $c, 2); |
|
| 2684 | + $var = array_shift($c); |
|
| 2685 | + $val = array_shift($c); |
|
| 2686 | + if ($var) { |
|
| 2687 | + $val = rawurldecode($val); |
|
| 2688 | + $var = rawurldecode($var); // decoder les [] eventuels |
|
| 2689 | + if (preg_match(',\[\]$,S', $var)) { |
|
| 2690 | + $values[] = array($var, $val); |
|
| 2691 | + } else { |
|
| 2692 | + if (!isset($values[$var])) { |
|
| 2693 | + $values[$var] = array($var, $val); |
|
| 2694 | + } |
|
| 2695 | + } |
|
| 2696 | + } |
|
| 2697 | + } |
|
| 2698 | + } |
|
| 2699 | + |
|
| 2700 | + // ensuite avec celles du contexte, sans doublonner ! |
|
| 2701 | + foreach ($contexte as $var => $val) { |
|
| 2702 | + if (preg_match(',\[\]$,S', $var)) { |
|
| 2703 | + $values[] = array($var, $val); |
|
| 2704 | + } else { |
|
| 2705 | + if (!isset($values[$var])) { |
|
| 2706 | + $values[$var] = array($var, $val); |
|
| 2707 | + } |
|
| 2708 | + } |
|
| 2709 | + } |
|
| 2710 | + |
|
| 2711 | + // puis on rassemble le tout |
|
| 2712 | + $hidden = array(); |
|
| 2713 | + foreach ($values as $value) { |
|
| 2714 | + list($var, $val) = $value; |
|
| 2715 | + $hidden[] = '<input name="' |
|
| 2716 | + . entites_html($var) |
|
| 2717 | + . '"' |
|
| 2718 | + . (is_null($val) |
|
| 2719 | + ? '' |
|
| 2720 | + : ' value="' . entites_html($val) . '"' |
|
| 2721 | + ) |
|
| 2722 | + . ' type="hidden"' . "\n/>"; |
|
| 2723 | + } |
|
| 2724 | + |
|
| 2725 | + return join("", $hidden); |
|
| 2726 | 2726 | } |
| 2727 | 2727 | |
| 2728 | 2728 | |
@@ -2744,7 +2744,7 @@ discard block |
||
| 2744 | 2744 | * - la première valeur du tableau sinon. |
| 2745 | 2745 | **/ |
| 2746 | 2746 | function filtre_reset($array) { |
| 2747 | - return !is_array($array) ? null : reset($array); |
|
| 2747 | + return !is_array($array) ? null : reset($array); |
|
| 2748 | 2748 | } |
| 2749 | 2749 | |
| 2750 | 2750 | /** |
@@ -2765,7 +2765,7 @@ discard block |
||
| 2765 | 2765 | * - la dernière valeur du tableau sinon. |
| 2766 | 2766 | **/ |
| 2767 | 2767 | function filtre_end($array) { |
| 2768 | - return !is_array($array) ? null : end($array); |
|
| 2768 | + return !is_array($array) ? null : end($array); |
|
| 2769 | 2769 | } |
| 2770 | 2770 | |
| 2771 | 2771 | /** |
@@ -2785,11 +2785,11 @@ discard block |
||
| 2785 | 2785 | * |
| 2786 | 2786 | **/ |
| 2787 | 2787 | function filtre_push($array, $val) { |
| 2788 | - if (!is_array($array) or !array_push($array, $val)) { |
|
| 2789 | - return ''; |
|
| 2790 | - } |
|
| 2788 | + if (!is_array($array) or !array_push($array, $val)) { |
|
| 2789 | + return ''; |
|
| 2790 | + } |
|
| 2791 | 2791 | |
| 2792 | - return $array; |
|
| 2792 | + return $array; |
|
| 2793 | 2793 | } |
| 2794 | 2794 | |
| 2795 | 2795 | /** |
@@ -2808,7 +2808,7 @@ discard block |
||
| 2808 | 2808 | * - `true` si la valeur existe dans le tableau, `false` sinon. |
| 2809 | 2809 | **/ |
| 2810 | 2810 | function filtre_find($array, $val) { |
| 2811 | - return (is_array($array) and in_array($val, $array)); |
|
| 2811 | + return (is_array($array) and in_array($val, $array)); |
|
| 2812 | 2812 | } |
| 2813 | 2813 | |
| 2814 | 2814 | |
@@ -2825,15 +2825,15 @@ discard block |
||
| 2825 | 2825 | * Contenu avec urls en absolus |
| 2826 | 2826 | **/ |
| 2827 | 2827 | function urls_absolues_css($contenu, $source) { |
| 2828 | - $path = suivre_lien(url_absolue($source), './'); |
|
| 2828 | + $path = suivre_lien(url_absolue($source), './'); |
|
| 2829 | 2829 | |
| 2830 | - return preg_replace_callback( |
|
| 2831 | - ",url\s*\(\s*['\"]?([^'\"/#\s][^:]*)['\"]?\s*\),Uims", |
|
| 2832 | - function($x) use ($path) { |
|
| 2833 | - return "url('" . suivre_lien($path, $x[1]) . "')"; |
|
| 2834 | - }, |
|
| 2835 | - $contenu |
|
| 2836 | - ); |
|
| 2830 | + return preg_replace_callback( |
|
| 2831 | + ",url\s*\(\s*['\"]?([^'\"/#\s][^:]*)['\"]?\s*\),Uims", |
|
| 2832 | + function($x) use ($path) { |
|
| 2833 | + return "url('" . suivre_lien($path, $x[1]) . "')"; |
|
| 2834 | + }, |
|
| 2835 | + $contenu |
|
| 2836 | + ); |
|
| 2837 | 2837 | } |
| 2838 | 2838 | |
| 2839 | 2839 | |
@@ -2862,118 +2862,118 @@ discard block |
||
| 2862 | 2862 | * Chemin du fichier CSS inversé |
| 2863 | 2863 | **/ |
| 2864 | 2864 | function direction_css($css, $voulue = '') { |
| 2865 | - if (!preg_match(',(_rtl)?\.css$,i', $css, $r)) { |
|
| 2866 | - return $css; |
|
| 2867 | - } |
|
| 2868 | - include_spip("inc/lang"); |
|
| 2869 | - // si on a precise le sens voulu en argument, le prendre en compte |
|
| 2870 | - if ($voulue = strtolower($voulue)) { |
|
| 2871 | - if ($voulue != 'rtl' and $voulue != 'ltr') { |
|
| 2872 | - $voulue = lang_dir($voulue); |
|
| 2873 | - } |
|
| 2874 | - } else { |
|
| 2875 | - $voulue = lang_dir(); |
|
| 2876 | - } |
|
| 2877 | - |
|
| 2878 | - $r = count($r) > 1; |
|
| 2879 | - $right = $r ? 'left' : 'right'; // 'right' de la css lue en entree |
|
| 2880 | - $dir = $r ? 'rtl' : 'ltr'; |
|
| 2881 | - $ndir = $r ? 'ltr' : 'rtl'; |
|
| 2882 | - |
|
| 2883 | - if ($voulue == $dir) { |
|
| 2884 | - return $css; |
|
| 2885 | - } |
|
| 2886 | - |
|
| 2887 | - if ( |
|
| 2888 | - // url absolue |
|
| 2889 | - preg_match(",^https?:,i", $css) |
|
| 2890 | - // ou qui contient un ? |
|
| 2891 | - or (($p = strpos($css, '?')) !== false) |
|
| 2892 | - ) { |
|
| 2893 | - $distant = true; |
|
| 2894 | - $cssf = parse_url($css); |
|
| 2895 | - $cssf = $cssf['path'] . ($cssf['query'] ? "?" . $cssf['query'] : ""); |
|
| 2896 | - $cssf = preg_replace(',[?:&=],', "_", $cssf); |
|
| 2897 | - } else { |
|
| 2898 | - $distant = false; |
|
| 2899 | - $cssf = $css; |
|
| 2900 | - // 1. regarder d'abord si un fichier avec la bonne direction n'est pas aussi |
|
| 2901 | - //propose (rien a faire dans ce cas) |
|
| 2902 | - $f = preg_replace(',(_rtl)?\.css$,i', '_' . $ndir . '.css', $css); |
|
| 2903 | - if (@file_exists($f)) { |
|
| 2904 | - return $f; |
|
| 2905 | - } |
|
| 2906 | - } |
|
| 2907 | - |
|
| 2908 | - // 2. |
|
| 2909 | - $dir_var = sous_repertoire(_DIR_VAR, 'cache-css'); |
|
| 2910 | - $f = $dir_var |
|
| 2911 | - . preg_replace(',.*/(.*?)(_rtl)?\.css,', '\1', $cssf) |
|
| 2912 | - . '.' . substr(md5($cssf), 0, 4) . '_' . $ndir . '.css'; |
|
| 2913 | - |
|
| 2914 | - // la css peut etre distante (url absolue !) |
|
| 2915 | - if ($distant) { |
|
| 2916 | - include_spip('inc/distant'); |
|
| 2917 | - $res = recuperer_url($css); |
|
| 2918 | - if (!$res or !$contenu = $res['page']) { |
|
| 2919 | - return $css; |
|
| 2920 | - } |
|
| 2921 | - } else { |
|
| 2922 | - if ((@filemtime($f) > @filemtime($css)) |
|
| 2923 | - and (_VAR_MODE != 'recalcul') |
|
| 2924 | - ) { |
|
| 2925 | - return $f; |
|
| 2926 | - } |
|
| 2927 | - if (!lire_fichier($css, $contenu)) { |
|
| 2928 | - return $css; |
|
| 2929 | - } |
|
| 2930 | - } |
|
| 2931 | - |
|
| 2932 | - |
|
| 2933 | - // Inverser la direction gauche-droite en utilisant CSSTidy qui gere aussi les shorthands |
|
| 2934 | - include_spip("lib/csstidy/class.csstidy"); |
|
| 2935 | - $parser = new csstidy(); |
|
| 2936 | - $parser->set_cfg('optimise_shorthands', 0); |
|
| 2937 | - $parser->set_cfg('reverse_left_and_right', true); |
|
| 2938 | - $parser->parse($contenu); |
|
| 2939 | - |
|
| 2940 | - $contenu = $parser->print->plain(); |
|
| 2941 | - |
|
| 2942 | - |
|
| 2943 | - // reperer les @import auxquels il faut propager le direction_css |
|
| 2944 | - preg_match_all(",\@import\s*url\s*\(\s*['\"]?([^'\"/][^:]*)['\"]?\s*\),Uims", $contenu, $regs); |
|
| 2945 | - $src = array(); |
|
| 2946 | - $src_direction_css = array(); |
|
| 2947 | - $src_faux_abs = array(); |
|
| 2948 | - $d = dirname($css); |
|
| 2949 | - foreach ($regs[1] as $k => $import_css) { |
|
| 2950 | - $css_direction = direction_css("$d/$import_css", $voulue); |
|
| 2951 | - // si la css_direction est dans le meme path que la css d'origine, on tronque le path, elle sera passee en absolue |
|
| 2952 | - if (substr($css_direction, 0, strlen($d) + 1) == "$d/") { |
|
| 2953 | - $css_direction = substr($css_direction, strlen($d) + 1); |
|
| 2954 | - } // si la css_direction commence par $dir_var on la fait passer pour une absolue |
|
| 2955 | - elseif (substr($css_direction, 0, strlen($dir_var)) == $dir_var) { |
|
| 2956 | - $css_direction = substr($css_direction, strlen($dir_var)); |
|
| 2957 | - $src_faux_abs["/@@@@@@/" . $css_direction] = $css_direction; |
|
| 2958 | - $css_direction = "/@@@@@@/" . $css_direction; |
|
| 2959 | - } |
|
| 2960 | - $src[] = $regs[0][$k]; |
|
| 2961 | - $src_direction_css[] = str_replace($import_css, $css_direction, $regs[0][$k]); |
|
| 2962 | - } |
|
| 2963 | - $contenu = str_replace($src, $src_direction_css, $contenu); |
|
| 2964 | - |
|
| 2965 | - $contenu = urls_absolues_css($contenu, $css); |
|
| 2966 | - |
|
| 2967 | - // virer les fausses url absolues que l'on a mis dans les import |
|
| 2968 | - if (count($src_faux_abs)) { |
|
| 2969 | - $contenu = str_replace(array_keys($src_faux_abs), $src_faux_abs, $contenu); |
|
| 2970 | - } |
|
| 2971 | - |
|
| 2972 | - if (!ecrire_fichier($f, $contenu)) { |
|
| 2973 | - return $css; |
|
| 2974 | - } |
|
| 2975 | - |
|
| 2976 | - return $f; |
|
| 2865 | + if (!preg_match(',(_rtl)?\.css$,i', $css, $r)) { |
|
| 2866 | + return $css; |
|
| 2867 | + } |
|
| 2868 | + include_spip("inc/lang"); |
|
| 2869 | + // si on a precise le sens voulu en argument, le prendre en compte |
|
| 2870 | + if ($voulue = strtolower($voulue)) { |
|
| 2871 | + if ($voulue != 'rtl' and $voulue != 'ltr') { |
|
| 2872 | + $voulue = lang_dir($voulue); |
|
| 2873 | + } |
|
| 2874 | + } else { |
|
| 2875 | + $voulue = lang_dir(); |
|
| 2876 | + } |
|
| 2877 | + |
|
| 2878 | + $r = count($r) > 1; |
|
| 2879 | + $right = $r ? 'left' : 'right'; // 'right' de la css lue en entree |
|
| 2880 | + $dir = $r ? 'rtl' : 'ltr'; |
|
| 2881 | + $ndir = $r ? 'ltr' : 'rtl'; |
|
| 2882 | + |
|
| 2883 | + if ($voulue == $dir) { |
|
| 2884 | + return $css; |
|
| 2885 | + } |
|
| 2886 | + |
|
| 2887 | + if ( |
|
| 2888 | + // url absolue |
|
| 2889 | + preg_match(",^https?:,i", $css) |
|
| 2890 | + // ou qui contient un ? |
|
| 2891 | + or (($p = strpos($css, '?')) !== false) |
|
| 2892 | + ) { |
|
| 2893 | + $distant = true; |
|
| 2894 | + $cssf = parse_url($css); |
|
| 2895 | + $cssf = $cssf['path'] . ($cssf['query'] ? "?" . $cssf['query'] : ""); |
|
| 2896 | + $cssf = preg_replace(',[?:&=],', "_", $cssf); |
|
| 2897 | + } else { |
|
| 2898 | + $distant = false; |
|
| 2899 | + $cssf = $css; |
|
| 2900 | + // 1. regarder d'abord si un fichier avec la bonne direction n'est pas aussi |
|
| 2901 | + //propose (rien a faire dans ce cas) |
|
| 2902 | + $f = preg_replace(',(_rtl)?\.css$,i', '_' . $ndir . '.css', $css); |
|
| 2903 | + if (@file_exists($f)) { |
|
| 2904 | + return $f; |
|
| 2905 | + } |
|
| 2906 | + } |
|
| 2907 | + |
|
| 2908 | + // 2. |
|
| 2909 | + $dir_var = sous_repertoire(_DIR_VAR, 'cache-css'); |
|
| 2910 | + $f = $dir_var |
|
| 2911 | + . preg_replace(',.*/(.*?)(_rtl)?\.css,', '\1', $cssf) |
|
| 2912 | + . '.' . substr(md5($cssf), 0, 4) . '_' . $ndir . '.css'; |
|
| 2913 | + |
|
| 2914 | + // la css peut etre distante (url absolue !) |
|
| 2915 | + if ($distant) { |
|
| 2916 | + include_spip('inc/distant'); |
|
| 2917 | + $res = recuperer_url($css); |
|
| 2918 | + if (!$res or !$contenu = $res['page']) { |
|
| 2919 | + return $css; |
|
| 2920 | + } |
|
| 2921 | + } else { |
|
| 2922 | + if ((@filemtime($f) > @filemtime($css)) |
|
| 2923 | + and (_VAR_MODE != 'recalcul') |
|
| 2924 | + ) { |
|
| 2925 | + return $f; |
|
| 2926 | + } |
|
| 2927 | + if (!lire_fichier($css, $contenu)) { |
|
| 2928 | + return $css; |
|
| 2929 | + } |
|
| 2930 | + } |
|
| 2931 | + |
|
| 2932 | + |
|
| 2933 | + // Inverser la direction gauche-droite en utilisant CSSTidy qui gere aussi les shorthands |
|
| 2934 | + include_spip("lib/csstidy/class.csstidy"); |
|
| 2935 | + $parser = new csstidy(); |
|
| 2936 | + $parser->set_cfg('optimise_shorthands', 0); |
|
| 2937 | + $parser->set_cfg('reverse_left_and_right', true); |
|
| 2938 | + $parser->parse($contenu); |
|
| 2939 | + |
|
| 2940 | + $contenu = $parser->print->plain(); |
|
| 2941 | + |
|
| 2942 | + |
|
| 2943 | + // reperer les @import auxquels il faut propager le direction_css |
|
| 2944 | + preg_match_all(",\@import\s*url\s*\(\s*['\"]?([^'\"/][^:]*)['\"]?\s*\),Uims", $contenu, $regs); |
|
| 2945 | + $src = array(); |
|
| 2946 | + $src_direction_css = array(); |
|
| 2947 | + $src_faux_abs = array(); |
|
| 2948 | + $d = dirname($css); |
|
| 2949 | + foreach ($regs[1] as $k => $import_css) { |
|
| 2950 | + $css_direction = direction_css("$d/$import_css", $voulue); |
|
| 2951 | + // si la css_direction est dans le meme path que la css d'origine, on tronque le path, elle sera passee en absolue |
|
| 2952 | + if (substr($css_direction, 0, strlen($d) + 1) == "$d/") { |
|
| 2953 | + $css_direction = substr($css_direction, strlen($d) + 1); |
|
| 2954 | + } // si la css_direction commence par $dir_var on la fait passer pour une absolue |
|
| 2955 | + elseif (substr($css_direction, 0, strlen($dir_var)) == $dir_var) { |
|
| 2956 | + $css_direction = substr($css_direction, strlen($dir_var)); |
|
| 2957 | + $src_faux_abs["/@@@@@@/" . $css_direction] = $css_direction; |
|
| 2958 | + $css_direction = "/@@@@@@/" . $css_direction; |
|
| 2959 | + } |
|
| 2960 | + $src[] = $regs[0][$k]; |
|
| 2961 | + $src_direction_css[] = str_replace($import_css, $css_direction, $regs[0][$k]); |
|
| 2962 | + } |
|
| 2963 | + $contenu = str_replace($src, $src_direction_css, $contenu); |
|
| 2964 | + |
|
| 2965 | + $contenu = urls_absolues_css($contenu, $css); |
|
| 2966 | + |
|
| 2967 | + // virer les fausses url absolues que l'on a mis dans les import |
|
| 2968 | + if (count($src_faux_abs)) { |
|
| 2969 | + $contenu = str_replace(array_keys($src_faux_abs), $src_faux_abs, $contenu); |
|
| 2970 | + } |
|
| 2971 | + |
|
| 2972 | + if (!ecrire_fichier($f, $contenu)) { |
|
| 2973 | + return $css; |
|
| 2974 | + } |
|
| 2975 | + |
|
| 2976 | + return $f; |
|
| 2977 | 2977 | } |
| 2978 | 2978 | |
| 2979 | 2979 | |
@@ -2996,45 +2996,45 @@ discard block |
||
| 2996 | 2996 | * - Chemin ou URL du fichier CSS source sinon. |
| 2997 | 2997 | **/ |
| 2998 | 2998 | function url_absolue_css($css) { |
| 2999 | - if (!preg_match(',\.css$,i', $css, $r)) { |
|
| 3000 | - return $css; |
|
| 3001 | - } |
|
| 2999 | + if (!preg_match(',\.css$,i', $css, $r)) { |
|
| 3000 | + return $css; |
|
| 3001 | + } |
|
| 3002 | 3002 | |
| 3003 | - $url_absolue_css = url_absolue($css); |
|
| 3003 | + $url_absolue_css = url_absolue($css); |
|
| 3004 | 3004 | |
| 3005 | - $f = basename($css, '.css'); |
|
| 3006 | - $f = sous_repertoire(_DIR_VAR, 'cache-css') |
|
| 3007 | - . preg_replace(",(.*?)(_rtl|_ltr)?$,", "\\1-urlabs-" . substr(md5("$css-urlabs"), 0, 4) . "\\2", $f) |
|
| 3008 | - . '.css'; |
|
| 3005 | + $f = basename($css, '.css'); |
|
| 3006 | + $f = sous_repertoire(_DIR_VAR, 'cache-css') |
|
| 3007 | + . preg_replace(",(.*?)(_rtl|_ltr)?$,", "\\1-urlabs-" . substr(md5("$css-urlabs"), 0, 4) . "\\2", $f) |
|
| 3008 | + . '.css'; |
|
| 3009 | 3009 | |
| 3010 | - if ((@filemtime($f) > @filemtime($css)) and (_VAR_MODE != 'recalcul')) { |
|
| 3011 | - return $f; |
|
| 3012 | - } |
|
| 3010 | + if ((@filemtime($f) > @filemtime($css)) and (_VAR_MODE != 'recalcul')) { |
|
| 3011 | + return $f; |
|
| 3012 | + } |
|
| 3013 | 3013 | |
| 3014 | - if ($url_absolue_css == $css) { |
|
| 3015 | - if (strncmp($GLOBALS['meta']['adresse_site'], $css, $l = strlen($GLOBALS['meta']['adresse_site'])) != 0 |
|
| 3016 | - or !lire_fichier(_DIR_RACINE . substr($css, $l), $contenu) |
|
| 3017 | - ) { |
|
| 3018 | - include_spip('inc/distant'); |
|
| 3019 | - $contenu = recuperer_url($css); |
|
| 3020 | - $contenu = $contenu['page'] ?? ''; |
|
| 3021 | - if (!$contenu) { |
|
| 3022 | - return $css; |
|
| 3023 | - } |
|
| 3024 | - } |
|
| 3025 | - } elseif (!lire_fichier($css, $contenu)) { |
|
| 3026 | - return $css; |
|
| 3027 | - } |
|
| 3014 | + if ($url_absolue_css == $css) { |
|
| 3015 | + if (strncmp($GLOBALS['meta']['adresse_site'], $css, $l = strlen($GLOBALS['meta']['adresse_site'])) != 0 |
|
| 3016 | + or !lire_fichier(_DIR_RACINE . substr($css, $l), $contenu) |
|
| 3017 | + ) { |
|
| 3018 | + include_spip('inc/distant'); |
|
| 3019 | + $contenu = recuperer_url($css); |
|
| 3020 | + $contenu = $contenu['page'] ?? ''; |
|
| 3021 | + if (!$contenu) { |
|
| 3022 | + return $css; |
|
| 3023 | + } |
|
| 3024 | + } |
|
| 3025 | + } elseif (!lire_fichier($css, $contenu)) { |
|
| 3026 | + return $css; |
|
| 3027 | + } |
|
| 3028 | 3028 | |
| 3029 | - // passer les url relatives a la css d'origine en url absolues |
|
| 3030 | - $contenu = urls_absolues_css($contenu, $css); |
|
| 3029 | + // passer les url relatives a la css d'origine en url absolues |
|
| 3030 | + $contenu = urls_absolues_css($contenu, $css); |
|
| 3031 | 3031 | |
| 3032 | - // ecrire la css |
|
| 3033 | - if (!ecrire_fichier($f, $contenu)) { |
|
| 3034 | - return $css; |
|
| 3035 | - } |
|
| 3032 | + // ecrire la css |
|
| 3033 | + if (!ecrire_fichier($f, $contenu)) { |
|
| 3034 | + return $css; |
|
| 3035 | + } |
|
| 3036 | 3036 | |
| 3037 | - return $f; |
|
| 3037 | + return $f; |
|
| 3038 | 3038 | } |
| 3039 | 3039 | |
| 3040 | 3040 | |
@@ -3068,24 +3068,24 @@ discard block |
||
| 3068 | 3068 | * Valeur trouvée ou valeur par défaut. |
| 3069 | 3069 | **/ |
| 3070 | 3070 | function table_valeur($table, $cle, $defaut = '', $conserver_null = false) { |
| 3071 | - foreach (explode('/', $cle) as $k) { |
|
| 3071 | + foreach (explode('/', $cle) as $k) { |
|
| 3072 | 3072 | |
| 3073 | - $table = is_string($table) ? @unserialize($table) : $table; |
|
| 3073 | + $table = is_string($table) ? @unserialize($table) : $table; |
|
| 3074 | 3074 | |
| 3075 | - if (is_object($table)) { |
|
| 3076 | - $table = (($k !== "") and isset($table->$k)) ? $table->$k : $defaut; |
|
| 3077 | - } elseif (is_array($table)) { |
|
| 3078 | - if ($conserver_null) { |
|
| 3079 | - $table = array_key_exists($k, $table) ? $table[$k] : $defaut; |
|
| 3080 | - } else { |
|
| 3081 | - $table = isset($table[$k]) ? $table[$k] : $defaut; |
|
| 3082 | - } |
|
| 3083 | - } else { |
|
| 3084 | - $table = $defaut; |
|
| 3085 | - } |
|
| 3086 | - } |
|
| 3075 | + if (is_object($table)) { |
|
| 3076 | + $table = (($k !== "") and isset($table->$k)) ? $table->$k : $defaut; |
|
| 3077 | + } elseif (is_array($table)) { |
|
| 3078 | + if ($conserver_null) { |
|
| 3079 | + $table = array_key_exists($k, $table) ? $table[$k] : $defaut; |
|
| 3080 | + } else { |
|
| 3081 | + $table = isset($table[$k]) ? $table[$k] : $defaut; |
|
| 3082 | + } |
|
| 3083 | + } else { |
|
| 3084 | + $table = $defaut; |
|
| 3085 | + } |
|
| 3086 | + } |
|
| 3087 | 3087 | |
| 3088 | - return $table; |
|
| 3088 | + return $table; |
|
| 3089 | 3089 | } |
| 3090 | 3090 | |
| 3091 | 3091 | /** |
@@ -3118,22 +3118,22 @@ discard block |
||
| 3118 | 3118 | * - string : expression trouvée. |
| 3119 | 3119 | **/ |
| 3120 | 3120 | function filtre_match_dist($texte, $expression, $modif = "UimsS", $capte = 0) { |
| 3121 | - if (intval($modif) and $capte == 0) { |
|
| 3122 | - $capte = $modif; |
|
| 3123 | - $modif = "UimsS"; |
|
| 3124 | - } |
|
| 3125 | - $expression = str_replace("\/", "/", $expression); |
|
| 3126 | - $expression = str_replace("/", "\/", $expression); |
|
| 3121 | + if (intval($modif) and $capte == 0) { |
|
| 3122 | + $capte = $modif; |
|
| 3123 | + $modif = "UimsS"; |
|
| 3124 | + } |
|
| 3125 | + $expression = str_replace("\/", "/", $expression); |
|
| 3126 | + $expression = str_replace("/", "\/", $expression); |
|
| 3127 | 3127 | |
| 3128 | - if (preg_match('/' . $expression . '/' . $modif, $texte, $r)) { |
|
| 3129 | - if (isset($r[$capte])) { |
|
| 3130 | - return $r[$capte]; |
|
| 3131 | - } else { |
|
| 3132 | - return true; |
|
| 3133 | - } |
|
| 3134 | - } |
|
| 3128 | + if (preg_match('/' . $expression . '/' . $modif, $texte, $r)) { |
|
| 3129 | + if (isset($r[$capte])) { |
|
| 3130 | + return $r[$capte]; |
|
| 3131 | + } else { |
|
| 3132 | + return true; |
|
| 3133 | + } |
|
| 3134 | + } |
|
| 3135 | 3135 | |
| 3136 | - return false; |
|
| 3136 | + return false; |
|
| 3137 | 3137 | } |
| 3138 | 3138 | |
| 3139 | 3139 | |
@@ -3160,10 +3160,10 @@ discard block |
||
| 3160 | 3160 | * Texte |
| 3161 | 3161 | **/ |
| 3162 | 3162 | function replace($texte, $expression, $replace = '', $modif = "UimsS") { |
| 3163 | - $expression = str_replace("\/", "/", $expression); |
|
| 3164 | - $expression = str_replace("/", "\/", $expression); |
|
| 3163 | + $expression = str_replace("\/", "/", $expression); |
|
| 3164 | + $expression = str_replace("/", "\/", $expression); |
|
| 3165 | 3165 | |
| 3166 | - return preg_replace('/' . $expression . '/' . $modif, $replace, $texte); |
|
| 3166 | + return preg_replace('/' . $expression . '/' . $modif, $replace, $texte); |
|
| 3167 | 3167 | } |
| 3168 | 3168 | |
| 3169 | 3169 | |
@@ -3181,21 +3181,21 @@ discard block |
||
| 3181 | 3181 | **/ |
| 3182 | 3182 | function traiter_doublons_documents(&$doublons, $letexte) { |
| 3183 | 3183 | |
| 3184 | - // Verifier dans le texte & les notes (pas beau, helas) |
|
| 3185 | - $t = $letexte . $GLOBALS['les_notes']; |
|
| 3184 | + // Verifier dans le texte & les notes (pas beau, helas) |
|
| 3185 | + $t = $letexte . $GLOBALS['les_notes']; |
|
| 3186 | 3186 | |
| 3187 | - if (strstr($t, 'spip_document_') // evite le preg_match_all si inutile |
|
| 3188 | - and preg_match_all( |
|
| 3189 | - ',<[^>]+\sclass=["\']spip_document_([0-9]+)[\s"\'],imsS', |
|
| 3190 | - $t, $matches, PREG_PATTERN_ORDER) |
|
| 3191 | - ) { |
|
| 3192 | - if (!isset($doublons['documents'])) { |
|
| 3193 | - $doublons['documents'] = ""; |
|
| 3194 | - } |
|
| 3195 | - $doublons['documents'] .= "," . join(',', $matches[1]); |
|
| 3196 | - } |
|
| 3187 | + if (strstr($t, 'spip_document_') // evite le preg_match_all si inutile |
|
| 3188 | + and preg_match_all( |
|
| 3189 | + ',<[^>]+\sclass=["\']spip_document_([0-9]+)[\s"\'],imsS', |
|
| 3190 | + $t, $matches, PREG_PATTERN_ORDER) |
|
| 3191 | + ) { |
|
| 3192 | + if (!isset($doublons['documents'])) { |
|
| 3193 | + $doublons['documents'] = ""; |
|
| 3194 | + } |
|
| 3195 | + $doublons['documents'] .= "," . join(',', $matches[1]); |
|
| 3196 | + } |
|
| 3197 | 3197 | |
| 3198 | - return $letexte; |
|
| 3198 | + return $letexte; |
|
| 3199 | 3199 | } |
| 3200 | 3200 | |
| 3201 | 3201 | /** |
@@ -3209,7 +3209,7 @@ discard block |
||
| 3209 | 3209 | * @return string Chaîne vide |
| 3210 | 3210 | **/ |
| 3211 | 3211 | function vide($texte) { |
| 3212 | - return ""; |
|
| 3212 | + return ""; |
|
| 3213 | 3213 | } |
| 3214 | 3214 | |
| 3215 | 3215 | // |
@@ -3238,23 +3238,23 @@ discard block |
||
| 3238 | 3238 | * Code HTML résultant |
| 3239 | 3239 | **/ |
| 3240 | 3240 | function env_to_params($env, $ignore_params = array()) { |
| 3241 | - $ignore_params = array_merge( |
|
| 3242 | - array('id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'), |
|
| 3243 | - $ignore_params |
|
| 3244 | - ); |
|
| 3245 | - if (!is_array($env)) { |
|
| 3246 | - $env = unserialize($env); |
|
| 3247 | - } |
|
| 3248 | - $texte = ""; |
|
| 3249 | - if ($env) { |
|
| 3250 | - foreach ($env as $i => $j) { |
|
| 3251 | - if (is_string($j) and !in_array($i, $ignore_params)) { |
|
| 3252 | - $texte .= "<param name='" . attribut_html($i) . "'\n\tvalue='" . attribut_html($j) . "' />"; |
|
| 3253 | - } |
|
| 3254 | - } |
|
| 3255 | - } |
|
| 3256 | - |
|
| 3257 | - return $texte; |
|
| 3241 | + $ignore_params = array_merge( |
|
| 3242 | + array('id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'), |
|
| 3243 | + $ignore_params |
|
| 3244 | + ); |
|
| 3245 | + if (!is_array($env)) { |
|
| 3246 | + $env = unserialize($env); |
|
| 3247 | + } |
|
| 3248 | + $texte = ""; |
|
| 3249 | + if ($env) { |
|
| 3250 | + foreach ($env as $i => $j) { |
|
| 3251 | + if (is_string($j) and !in_array($i, $ignore_params)) { |
|
| 3252 | + $texte .= "<param name='" . attribut_html($i) . "'\n\tvalue='" . attribut_html($j) . "' />"; |
|
| 3253 | + } |
|
| 3254 | + } |
|
| 3255 | + } |
|
| 3256 | + |
|
| 3257 | + return $texte; |
|
| 3258 | 3258 | } |
| 3259 | 3259 | |
| 3260 | 3260 | /** |
@@ -3277,23 +3277,23 @@ discard block |
||
| 3277 | 3277 | * Code HTML résultant |
| 3278 | 3278 | **/ |
| 3279 | 3279 | function env_to_attributs($env, $ignore_params = array()) { |
| 3280 | - $ignore_params = array_merge( |
|
| 3281 | - array('id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'), |
|
| 3282 | - $ignore_params |
|
| 3283 | - ); |
|
| 3284 | - if (!is_array($env)) { |
|
| 3285 | - $env = unserialize($env); |
|
| 3286 | - } |
|
| 3287 | - $texte = ""; |
|
| 3288 | - if ($env) { |
|
| 3289 | - foreach ($env as $i => $j) { |
|
| 3290 | - if (is_string($j) and !in_array($i, $ignore_params)) { |
|
| 3291 | - $texte .= attribut_html($i) . "='" . attribut_html($j) . "' "; |
|
| 3292 | - } |
|
| 3293 | - } |
|
| 3294 | - } |
|
| 3280 | + $ignore_params = array_merge( |
|
| 3281 | + array('id', 'lang', 'id_document', 'date', 'date_redac', 'align', 'fond', '', 'recurs', 'emb', 'dir_racine'), |
|
| 3282 | + $ignore_params |
|
| 3283 | + ); |
|
| 3284 | + if (!is_array($env)) { |
|
| 3285 | + $env = unserialize($env); |
|
| 3286 | + } |
|
| 3287 | + $texte = ""; |
|
| 3288 | + if ($env) { |
|
| 3289 | + foreach ($env as $i => $j) { |
|
| 3290 | + if (is_string($j) and !in_array($i, $ignore_params)) { |
|
| 3291 | + $texte .= attribut_html($i) . "='" . attribut_html($j) . "' "; |
|
| 3292 | + } |
|
| 3293 | + } |
|
| 3294 | + } |
|
| 3295 | 3295 | |
| 3296 | - return $texte; |
|
| 3296 | + return $texte; |
|
| 3297 | 3297 | } |
| 3298 | 3298 | |
| 3299 | 3299 | |
@@ -3311,7 +3311,7 @@ discard block |
||
| 3311 | 3311 | * @return string Chaînes concaténés |
| 3312 | 3312 | **/ |
| 3313 | 3313 | function concat(...$args) : string { |
| 3314 | - return join('', $args); |
|
| 3314 | + return join('', $args); |
|
| 3315 | 3315 | } |
| 3316 | 3316 | |
| 3317 | 3317 | |
@@ -3331,23 +3331,23 @@ discard block |
||
| 3331 | 3331 | * Contenu du ou des fichiers, concaténé |
| 3332 | 3332 | **/ |
| 3333 | 3333 | function charge_scripts($files, $script = true) { |
| 3334 | - $flux = ""; |
|
| 3335 | - foreach (is_array($files) ? $files : explode("|", $files) as $file) { |
|
| 3336 | - if (!is_string($file)) { |
|
| 3337 | - continue; |
|
| 3338 | - } |
|
| 3339 | - if ($script) { |
|
| 3340 | - $file = preg_match(",^\w+$,", $file) ? "javascript/$file.js" : ''; |
|
| 3341 | - } |
|
| 3342 | - if ($file) { |
|
| 3343 | - $path = find_in_path($file); |
|
| 3344 | - if ($path) { |
|
| 3345 | - $flux .= spip_file_get_contents($path); |
|
| 3346 | - } |
|
| 3347 | - } |
|
| 3348 | - } |
|
| 3349 | - |
|
| 3350 | - return $flux; |
|
| 3334 | + $flux = ""; |
|
| 3335 | + foreach (is_array($files) ? $files : explode("|", $files) as $file) { |
|
| 3336 | + if (!is_string($file)) { |
|
| 3337 | + continue; |
|
| 3338 | + } |
|
| 3339 | + if ($script) { |
|
| 3340 | + $file = preg_match(",^\w+$,", $file) ? "javascript/$file.js" : ''; |
|
| 3341 | + } |
|
| 3342 | + if ($file) { |
|
| 3343 | + $path = find_in_path($file); |
|
| 3344 | + if ($path) { |
|
| 3345 | + $flux .= spip_file_get_contents($path); |
|
| 3346 | + } |
|
| 3347 | + } |
|
| 3348 | + } |
|
| 3349 | + |
|
| 3350 | + return $flux; |
|
| 3351 | 3351 | } |
| 3352 | 3352 | |
| 3353 | 3353 | /** |
@@ -3358,20 +3358,20 @@ discard block |
||
| 3358 | 3358 | * @return string |
| 3359 | 3359 | */ |
| 3360 | 3360 | function http_img_variante_svg_si_possible($img_file) { |
| 3361 | - // on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png |
|
| 3362 | - // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png |
|
| 3363 | - if (preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m) |
|
| 3364 | - and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . "-xx.svg" |
|
| 3365 | - and file_exists($variante_svg_generique)) { |
|
| 3366 | - if ($variante_svg_size = substr($variante_svg_generique,0,-6) . $m[1] . ".svg" and file_exists($variante_svg_size)) { |
|
| 3367 | - $img_file = $variante_svg_size; |
|
| 3368 | - } |
|
| 3369 | - else { |
|
| 3370 | - $img_file = $variante_svg_generique; |
|
| 3371 | - } |
|
| 3372 | - } |
|
| 3361 | + // on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png |
|
| 3362 | + // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png |
|
| 3363 | + if (preg_match(',-(\d+)[.](png|gif|svg)$,', $img_file, $m) |
|
| 3364 | + and $variante_svg_generique = substr($img_file, 0, -strlen($m[0])) . "-xx.svg" |
|
| 3365 | + and file_exists($variante_svg_generique)) { |
|
| 3366 | + if ($variante_svg_size = substr($variante_svg_generique,0,-6) . $m[1] . ".svg" and file_exists($variante_svg_size)) { |
|
| 3367 | + $img_file = $variante_svg_size; |
|
| 3368 | + } |
|
| 3369 | + else { |
|
| 3370 | + $img_file = $variante_svg_generique; |
|
| 3371 | + } |
|
| 3372 | + } |
|
| 3373 | 3373 | |
| 3374 | - return $img_file; |
|
| 3374 | + return $img_file; |
|
| 3375 | 3375 | } |
| 3376 | 3376 | |
| 3377 | 3377 | /** |
@@ -3392,53 +3392,53 @@ discard block |
||
| 3392 | 3392 | */ |
| 3393 | 3393 | function http_img_pack($img, $alt, $atts = '', $title = '', $options = array()) { |
| 3394 | 3394 | |
| 3395 | - $img_file = $img; |
|
| 3396 | - if ($p = strpos($img_file, '?')) { |
|
| 3397 | - $img_file = substr($img_file,0, $p); |
|
| 3398 | - } |
|
| 3399 | - if (!isset($options['chemin_image']) or $options['chemin_image'] == true) { |
|
| 3400 | - $img_file = chemin_image($img); |
|
| 3401 | - } |
|
| 3402 | - else { |
|
| 3403 | - if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true){ |
|
| 3404 | - $img_file = http_img_variante_svg_si_possible($img_file); |
|
| 3405 | - } |
|
| 3406 | - } |
|
| 3407 | - if (stripos($atts, 'width') === false) { |
|
| 3408 | - // utiliser directement l'info de taille presente dans le nom |
|
| 3409 | - if ((!isset($options['utiliser_suffixe_size']) |
|
| 3410 | - or $options['utiliser_suffixe_size'] == true |
|
| 3411 | - or strpos($img_file, '-xx.svg') !== false) |
|
| 3412 | - and (preg_match(',-([0-9]+)[.](png|gif|svg)$,', $img, $regs) |
|
| 3413 | - or preg_match(',\?([0-9]+)px$,', $img, $regs)) |
|
| 3414 | - ) { |
|
| 3415 | - $largeur = $hauteur = intval($regs[1]); |
|
| 3416 | - } else { |
|
| 3417 | - $taille = taille_image($img_file); |
|
| 3418 | - list($hauteur, $largeur) = $taille; |
|
| 3419 | - if (!$hauteur or !$largeur) { |
|
| 3420 | - return ""; |
|
| 3421 | - } |
|
| 3422 | - } |
|
| 3423 | - $atts .= " width='" . $largeur . "' height='" . $hauteur . "'"; |
|
| 3424 | - } |
|
| 3425 | - |
|
| 3426 | - if (file_exists($img_file)) { |
|
| 3427 | - $img_file = timestamp($img_file); |
|
| 3428 | - } |
|
| 3429 | - if ($alt === false) { |
|
| 3430 | - $alt = ''; |
|
| 3431 | - } |
|
| 3432 | - elseif($alt or $alt==='') { |
|
| 3433 | - $alt = " alt='".attribut_html($alt)."'"; |
|
| 3434 | - } |
|
| 3435 | - else { |
|
| 3436 | - $alt = " alt='".attribut_html($title)."'"; |
|
| 3437 | - } |
|
| 3438 | - return "<img src='$img_file'$alt" |
|
| 3439 | - . ($title ? ' title="' . attribut_html($title) . '"' : '') |
|
| 3440 | - . " " . ltrim($atts) |
|
| 3441 | - . " />"; |
|
| 3395 | + $img_file = $img; |
|
| 3396 | + if ($p = strpos($img_file, '?')) { |
|
| 3397 | + $img_file = substr($img_file,0, $p); |
|
| 3398 | + } |
|
| 3399 | + if (!isset($options['chemin_image']) or $options['chemin_image'] == true) { |
|
| 3400 | + $img_file = chemin_image($img); |
|
| 3401 | + } |
|
| 3402 | + else { |
|
| 3403 | + if (!isset($options['variante_svg_si_possible']) or $options['variante_svg_si_possible'] == true){ |
|
| 3404 | + $img_file = http_img_variante_svg_si_possible($img_file); |
|
| 3405 | + } |
|
| 3406 | + } |
|
| 3407 | + if (stripos($atts, 'width') === false) { |
|
| 3408 | + // utiliser directement l'info de taille presente dans le nom |
|
| 3409 | + if ((!isset($options['utiliser_suffixe_size']) |
|
| 3410 | + or $options['utiliser_suffixe_size'] == true |
|
| 3411 | + or strpos($img_file, '-xx.svg') !== false) |
|
| 3412 | + and (preg_match(',-([0-9]+)[.](png|gif|svg)$,', $img, $regs) |
|
| 3413 | + or preg_match(',\?([0-9]+)px$,', $img, $regs)) |
|
| 3414 | + ) { |
|
| 3415 | + $largeur = $hauteur = intval($regs[1]); |
|
| 3416 | + } else { |
|
| 3417 | + $taille = taille_image($img_file); |
|
| 3418 | + list($hauteur, $largeur) = $taille; |
|
| 3419 | + if (!$hauteur or !$largeur) { |
|
| 3420 | + return ""; |
|
| 3421 | + } |
|
| 3422 | + } |
|
| 3423 | + $atts .= " width='" . $largeur . "' height='" . $hauteur . "'"; |
|
| 3424 | + } |
|
| 3425 | + |
|
| 3426 | + if (file_exists($img_file)) { |
|
| 3427 | + $img_file = timestamp($img_file); |
|
| 3428 | + } |
|
| 3429 | + if ($alt === false) { |
|
| 3430 | + $alt = ''; |
|
| 3431 | + } |
|
| 3432 | + elseif($alt or $alt==='') { |
|
| 3433 | + $alt = " alt='".attribut_html($alt)."'"; |
|
| 3434 | + } |
|
| 3435 | + else { |
|
| 3436 | + $alt = " alt='".attribut_html($title)."'"; |
|
| 3437 | + } |
|
| 3438 | + return "<img src='$img_file'$alt" |
|
| 3439 | + . ($title ? ' title="' . attribut_html($title) . '"' : '') |
|
| 3440 | + . " " . ltrim($atts) |
|
| 3441 | + . " />"; |
|
| 3442 | 3442 | } |
| 3443 | 3443 | |
| 3444 | 3444 | /** |
@@ -3450,68 +3450,68 @@ discard block |
||
| 3450 | 3450 | * @return string |
| 3451 | 3451 | */ |
| 3452 | 3452 | function http_style_background($img, $att = '', $size=null) { |
| 3453 | - if ($size and is_numeric($size)){ |
|
| 3454 | - $size = trim($size) . "px"; |
|
| 3455 | - } |
|
| 3456 | - return " style='background" . |
|
| 3457 | - ($att ? "" : "-image") . ": url(\"" . chemin_image($img) . "\")" . ($att ? (' ' . $att) : '') . ";" |
|
| 3458 | - . ($size ? "background-size:{$size};" : '') |
|
| 3459 | - . "'"; |
|
| 3453 | + if ($size and is_numeric($size)){ |
|
| 3454 | + $size = trim($size) . "px"; |
|
| 3455 | + } |
|
| 3456 | + return " style='background" . |
|
| 3457 | + ($att ? "" : "-image") . ": url(\"" . chemin_image($img) . "\")" . ($att ? (' ' . $att) : '') . ";" |
|
| 3458 | + . ($size ? "background-size:{$size};" : '') |
|
| 3459 | + . "'"; |
|
| 3460 | 3460 | } |
| 3461 | 3461 | |
| 3462 | 3462 | |
| 3463 | 3463 | function helper_filtre_balise_img_svg_arguments($alt_or_size, $class_or_size, $size) { |
| 3464 | - $args = [$alt_or_size, $class_or_size, $size]; |
|
| 3465 | - while (is_null(end($args)) and count($args)) { |
|
| 3466 | - array_pop($args); |
|
| 3467 | - } |
|
| 3468 | - if (!count($args)) { |
|
| 3469 | - return [null, null, null]; |
|
| 3470 | - } |
|
| 3471 | - if (count($args) < 3) { |
|
| 3472 | - $maybe_size = array_pop($args); |
|
| 3473 | - // @2x |
|
| 3474 | - // @1.5x |
|
| 3475 | - // 512 |
|
| 3476 | - // 512x* |
|
| 3477 | - // 512x300 |
|
| 3478 | - if (!strlen($maybe_size) |
|
| 3479 | - or !preg_match(',^(@\d+(\.\d+)?x|\d+(x\*)?|\d+x\d+)$,', trim($maybe_size))) { |
|
| 3480 | - $args[] = $maybe_size; |
|
| 3481 | - $maybe_size = null; |
|
| 3482 | - } |
|
| 3483 | - while (count($args)<2) { |
|
| 3484 | - $args[] = null; // default alt or class |
|
| 3485 | - } |
|
| 3486 | - $args[] = $maybe_size; |
|
| 3487 | - } |
|
| 3488 | - return $args; |
|
| 3464 | + $args = [$alt_or_size, $class_or_size, $size]; |
|
| 3465 | + while (is_null(end($args)) and count($args)) { |
|
| 3466 | + array_pop($args); |
|
| 3467 | + } |
|
| 3468 | + if (!count($args)) { |
|
| 3469 | + return [null, null, null]; |
|
| 3470 | + } |
|
| 3471 | + if (count($args) < 3) { |
|
| 3472 | + $maybe_size = array_pop($args); |
|
| 3473 | + // @2x |
|
| 3474 | + // @1.5x |
|
| 3475 | + // 512 |
|
| 3476 | + // 512x* |
|
| 3477 | + // 512x300 |
|
| 3478 | + if (!strlen($maybe_size) |
|
| 3479 | + or !preg_match(',^(@\d+(\.\d+)?x|\d+(x\*)?|\d+x\d+)$,', trim($maybe_size))) { |
|
| 3480 | + $args[] = $maybe_size; |
|
| 3481 | + $maybe_size = null; |
|
| 3482 | + } |
|
| 3483 | + while (count($args)<2) { |
|
| 3484 | + $args[] = null; // default alt or class |
|
| 3485 | + } |
|
| 3486 | + $args[] = $maybe_size; |
|
| 3487 | + } |
|
| 3488 | + return $args; |
|
| 3489 | 3489 | } |
| 3490 | 3490 | |
| 3491 | 3491 | function helper_filtre_balise_img_svg_size($img, $size) { |
| 3492 | - // si size est de la forme '@2x' c'est un coeff multiplicateur sur la densite |
|
| 3493 | - if (strpos($size, '@') === 0 and substr($size,-1) === 'x') { |
|
| 3494 | - $coef = floatval(substr($size, 1, -1)); |
|
| 3495 | - list($h, $w) = taille_image($img); |
|
| 3496 | - $height = intval(round($h / $coef)); |
|
| 3497 | - $width = intval(round($w / $coef)); |
|
| 3498 | - } |
|
| 3499 | - // sinon c'est une valeur seule si image caree ou largeurxhauteur |
|
| 3500 | - else { |
|
| 3501 | - $size = explode('x', $size, 2); |
|
| 3502 | - $size = array_map('trim', $size); |
|
| 3503 | - $height = $width = intval(array_shift($size)); |
|
| 3504 | - |
|
| 3505 | - if (count($size) and reset($size)) { |
|
| 3506 | - $height = array_shift($size); |
|
| 3507 | - if ($height === '*') { |
|
| 3508 | - list($h, $w) = taille_image($img); |
|
| 3509 | - $height = intval(round($h * $width / $w)); |
|
| 3510 | - } |
|
| 3511 | - } |
|
| 3512 | - } |
|
| 3513 | - |
|
| 3514 | - return [$width, $height]; |
|
| 3492 | + // si size est de la forme '@2x' c'est un coeff multiplicateur sur la densite |
|
| 3493 | + if (strpos($size, '@') === 0 and substr($size,-1) === 'x') { |
|
| 3494 | + $coef = floatval(substr($size, 1, -1)); |
|
| 3495 | + list($h, $w) = taille_image($img); |
|
| 3496 | + $height = intval(round($h / $coef)); |
|
| 3497 | + $width = intval(round($w / $coef)); |
|
| 3498 | + } |
|
| 3499 | + // sinon c'est une valeur seule si image caree ou largeurxhauteur |
|
| 3500 | + else { |
|
| 3501 | + $size = explode('x', $size, 2); |
|
| 3502 | + $size = array_map('trim', $size); |
|
| 3503 | + $height = $width = intval(array_shift($size)); |
|
| 3504 | + |
|
| 3505 | + if (count($size) and reset($size)) { |
|
| 3506 | + $height = array_shift($size); |
|
| 3507 | + if ($height === '*') { |
|
| 3508 | + list($h, $w) = taille_image($img); |
|
| 3509 | + $height = intval(round($h * $width / $w)); |
|
| 3510 | + } |
|
| 3511 | + } |
|
| 3512 | + } |
|
| 3513 | + |
|
| 3514 | + return [$width, $height]; |
|
| 3515 | 3515 | } |
| 3516 | 3516 | |
| 3517 | 3517 | /** |
@@ -3547,38 +3547,38 @@ discard block |
||
| 3547 | 3547 | */ |
| 3548 | 3548 | function filtre_balise_img_dist($img, $alt = '', $class = null, $size=null) { |
| 3549 | 3549 | |
| 3550 | - list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size); |
|
| 3550 | + list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size); |
|
| 3551 | 3551 | |
| 3552 | - $img = trim($img); |
|
| 3553 | - if (strpos($img, '<img') === 0) { |
|
| 3554 | - if (!is_null($alt)) { |
|
| 3555 | - $img = inserer_attribut($img, 'alt', $alt); |
|
| 3556 | - } |
|
| 3557 | - if (!is_null($class)) { |
|
| 3558 | - if (strlen($class)) { |
|
| 3559 | - $img = inserer_attribut($img, 'class', $class); |
|
| 3560 | - } |
|
| 3561 | - else { |
|
| 3562 | - $img = vider_attribut($img, 'class'); |
|
| 3563 | - } |
|
| 3564 | - } |
|
| 3565 | - } |
|
| 3566 | - else { |
|
| 3567 | - $img = http_img_pack($img, $alt, $class ? " class='" . attribut_html($class) . "'" : '', '', |
|
| 3568 | - array('chemin_image' => false, 'utiliser_suffixe_size' => false)); |
|
| 3569 | - if (is_null($alt)) { |
|
| 3570 | - $img = vider_attribut($img, 'alt'); |
|
| 3571 | - } |
|
| 3572 | - } |
|
| 3552 | + $img = trim($img); |
|
| 3553 | + if (strpos($img, '<img') === 0) { |
|
| 3554 | + if (!is_null($alt)) { |
|
| 3555 | + $img = inserer_attribut($img, 'alt', $alt); |
|
| 3556 | + } |
|
| 3557 | + if (!is_null($class)) { |
|
| 3558 | + if (strlen($class)) { |
|
| 3559 | + $img = inserer_attribut($img, 'class', $class); |
|
| 3560 | + } |
|
| 3561 | + else { |
|
| 3562 | + $img = vider_attribut($img, 'class'); |
|
| 3563 | + } |
|
| 3564 | + } |
|
| 3565 | + } |
|
| 3566 | + else { |
|
| 3567 | + $img = http_img_pack($img, $alt, $class ? " class='" . attribut_html($class) . "'" : '', '', |
|
| 3568 | + array('chemin_image' => false, 'utiliser_suffixe_size' => false)); |
|
| 3569 | + if (is_null($alt)) { |
|
| 3570 | + $img = vider_attribut($img, 'alt'); |
|
| 3571 | + } |
|
| 3572 | + } |
|
| 3573 | 3573 | |
| 3574 | - if ($img and !is_null($size) and strlen($size = trim($size))) { |
|
| 3575 | - list($width, $height) = helper_filtre_balise_img_svg_size($img, $size); |
|
| 3574 | + if ($img and !is_null($size) and strlen($size = trim($size))) { |
|
| 3575 | + list($width, $height) = helper_filtre_balise_img_svg_size($img, $size); |
|
| 3576 | 3576 | |
| 3577 | - $img = inserer_attribut($img, 'width', $width); |
|
| 3578 | - $img = inserer_attribut($img, 'height', $height); |
|
| 3579 | - } |
|
| 3577 | + $img = inserer_attribut($img, 'width', $width); |
|
| 3578 | + $img = inserer_attribut($img, 'height', $height); |
|
| 3579 | + } |
|
| 3580 | 3580 | |
| 3581 | - return $img; |
|
| 3581 | + return $img; |
|
| 3582 | 3582 | } |
| 3583 | 3583 | |
| 3584 | 3584 | |
@@ -3612,67 +3612,67 @@ discard block |
||
| 3612 | 3612 | */ |
| 3613 | 3613 | function filtre_balise_svg_dist($img, $alt = '', $class = null, $size=null) { |
| 3614 | 3614 | |
| 3615 | - $img = trim($img); |
|
| 3616 | - $img_file = $img; |
|
| 3617 | - if (strpos($img, '<svg') === false){ |
|
| 3618 | - if ($p = strpos($img_file, '?')){ |
|
| 3619 | - $img_file = substr($img_file, 0, $p); |
|
| 3620 | - } |
|
| 3615 | + $img = trim($img); |
|
| 3616 | + $img_file = $img; |
|
| 3617 | + if (strpos($img, '<svg') === false){ |
|
| 3618 | + if ($p = strpos($img_file, '?')){ |
|
| 3619 | + $img_file = substr($img_file, 0, $p); |
|
| 3620 | + } |
|
| 3621 | 3621 | |
| 3622 | - if (!$img_file or !$svg = file_get_contents($img_file)){ |
|
| 3623 | - return ''; |
|
| 3624 | - } |
|
| 3625 | - } |
|
| 3622 | + if (!$img_file or !$svg = file_get_contents($img_file)){ |
|
| 3623 | + return ''; |
|
| 3624 | + } |
|
| 3625 | + } |
|
| 3626 | 3626 | |
| 3627 | - if (!preg_match(",<svg\b[^>]*>,UimsS", $svg, $match)) { |
|
| 3628 | - return ''; |
|
| 3629 | - } |
|
| 3627 | + if (!preg_match(",<svg\b[^>]*>,UimsS", $svg, $match)) { |
|
| 3628 | + return ''; |
|
| 3629 | + } |
|
| 3630 | 3630 | |
| 3631 | - list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size); |
|
| 3631 | + list($alt, $class, $size) = helper_filtre_balise_img_svg_arguments($alt, $class, $size); |
|
| 3632 | 3632 | |
| 3633 | - $balise_svg = $match[0]; |
|
| 3634 | - $balise_svg_source = $balise_svg; |
|
| 3633 | + $balise_svg = $match[0]; |
|
| 3634 | + $balise_svg_source = $balise_svg; |
|
| 3635 | 3635 | |
| 3636 | - // entete XML Ã supprimer |
|
| 3637 | - $svg = preg_replace(',^\s*<\?xml[^>]*\?' . '>,', '', $svg); |
|
| 3636 | + // entete XML Ã supprimer |
|
| 3637 | + $svg = preg_replace(',^\s*<\?xml[^>]*\?' . '>,', '', $svg); |
|
| 3638 | 3638 | |
| 3639 | - // IE est toujours mon ami |
|
| 3640 | - $balise_svg = inserer_attribut($balise_svg, 'focusable', 'false'); |
|
| 3639 | + // IE est toujours mon ami |
|
| 3640 | + $balise_svg = inserer_attribut($balise_svg, 'focusable', 'false'); |
|
| 3641 | 3641 | |
| 3642 | - // regler la classe |
|
| 3643 | - if (!is_null($class)) { |
|
| 3644 | - if (strlen($class)) { |
|
| 3645 | - $balise_svg = inserer_attribut($balise_svg, 'class', $class); |
|
| 3646 | - } |
|
| 3647 | - else { |
|
| 3648 | - $balise_svg = vider_attribut($balise_svg, 'class'); |
|
| 3649 | - } |
|
| 3650 | - } |
|
| 3642 | + // regler la classe |
|
| 3643 | + if (!is_null($class)) { |
|
| 3644 | + if (strlen($class)) { |
|
| 3645 | + $balise_svg = inserer_attribut($balise_svg, 'class', $class); |
|
| 3646 | + } |
|
| 3647 | + else { |
|
| 3648 | + $balise_svg = vider_attribut($balise_svg, 'class'); |
|
| 3649 | + } |
|
| 3650 | + } |
|
| 3651 | 3651 | |
| 3652 | - // regler le alt |
|
| 3653 | - if ($alt){ |
|
| 3654 | - $balise_svg = inserer_attribut($balise_svg, 'role', 'img'); |
|
| 3655 | - $id = "img-svg-title-" . substr(md5("$img_file:$svg:$alt"),0,4); |
|
| 3656 | - $balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id); |
|
| 3657 | - $title = "<title id=\"$id\">" . entites_html($alt)."</title>\n"; |
|
| 3658 | - $balise_svg .= $title; |
|
| 3659 | - } |
|
| 3660 | - else { |
|
| 3661 | - $balise_svg = inserer_attribut($balise_svg, 'aria-hidden', 'true'); |
|
| 3662 | - } |
|
| 3652 | + // regler le alt |
|
| 3653 | + if ($alt){ |
|
| 3654 | + $balise_svg = inserer_attribut($balise_svg, 'role', 'img'); |
|
| 3655 | + $id = "img-svg-title-" . substr(md5("$img_file:$svg:$alt"),0,4); |
|
| 3656 | + $balise_svg = inserer_attribut($balise_svg, 'aria-labelledby', $id); |
|
| 3657 | + $title = "<title id=\"$id\">" . entites_html($alt)."</title>\n"; |
|
| 3658 | + $balise_svg .= $title; |
|
| 3659 | + } |
|
| 3660 | + else { |
|
| 3661 | + $balise_svg = inserer_attribut($balise_svg, 'aria-hidden', 'true'); |
|
| 3662 | + } |
|
| 3663 | 3663 | |
| 3664 | - $svg = str_replace($balise_svg_source, $balise_svg, $svg); |
|
| 3664 | + $svg = str_replace($balise_svg_source, $balise_svg, $svg); |
|
| 3665 | 3665 | |
| 3666 | - if (!is_null($size) and strlen($size = trim($size))) { |
|
| 3667 | - list($width, $height) = helper_filtre_balise_img_svg_size($svg, $size); |
|
| 3666 | + if (!is_null($size) and strlen($size = trim($size))) { |
|
| 3667 | + list($width, $height) = helper_filtre_balise_img_svg_size($svg, $size); |
|
| 3668 | 3668 | |
| 3669 | - if (!function_exists('svg_redimensionner')) { |
|
| 3670 | - include_spip('inc/svg'); |
|
| 3671 | - } |
|
| 3672 | - $svg = svg_redimensionner($svg, $width, $height); |
|
| 3673 | - } |
|
| 3669 | + if (!function_exists('svg_redimensionner')) { |
|
| 3670 | + include_spip('inc/svg'); |
|
| 3671 | + } |
|
| 3672 | + $svg = svg_redimensionner($svg, $width, $height); |
|
| 3673 | + } |
|
| 3674 | 3674 | |
| 3675 | - return $svg; |
|
| 3675 | + return $svg; |
|
| 3676 | 3676 | } |
| 3677 | 3677 | |
| 3678 | 3678 | |
@@ -3698,17 +3698,17 @@ discard block |
||
| 3698 | 3698 | * Code HTML résultant |
| 3699 | 3699 | **/ |
| 3700 | 3700 | function filtre_foreach_dist($tableau, $modele = 'foreach') { |
| 3701 | - $texte = ''; |
|
| 3702 | - if (is_array($tableau)) { |
|
| 3703 | - foreach ($tableau as $k => $v) { |
|
| 3704 | - $res = recuperer_fond('modeles/' . $modele, |
|
| 3705 | - array_merge(array('cle' => $k), (is_array($v) ? $v : array('valeur' => $v))) |
|
| 3706 | - ); |
|
| 3707 | - $texte .= $res; |
|
| 3708 | - } |
|
| 3709 | - } |
|
| 3701 | + $texte = ''; |
|
| 3702 | + if (is_array($tableau)) { |
|
| 3703 | + foreach ($tableau as $k => $v) { |
|
| 3704 | + $res = recuperer_fond('modeles/' . $modele, |
|
| 3705 | + array_merge(array('cle' => $k), (is_array($v) ? $v : array('valeur' => $v))) |
|
| 3706 | + ); |
|
| 3707 | + $texte .= $res; |
|
| 3708 | + } |
|
| 3709 | + } |
|
| 3710 | 3710 | |
| 3711 | - return $texte; |
|
| 3711 | + return $texte; |
|
| 3712 | 3712 | } |
| 3713 | 3713 | |
| 3714 | 3714 | |
@@ -3733,37 +3733,37 @@ discard block |
||
| 3733 | 3733 | * - tout : retourne toutes les informations du plugin actif |
| 3734 | 3734 | **/ |
| 3735 | 3735 | function filtre_info_plugin_dist($plugin, $type_info, $reload = false) { |
| 3736 | - include_spip('inc/plugin'); |
|
| 3737 | - $plugin = strtoupper($plugin); |
|
| 3738 | - $plugins_actifs = liste_plugin_actifs(); |
|
| 3739 | - |
|
| 3740 | - if (!$plugin) { |
|
| 3741 | - return serialize(array_keys($plugins_actifs)); |
|
| 3742 | - } elseif (empty($plugins_actifs[$plugin]) and !$reload) { |
|
| 3743 | - return ''; |
|
| 3744 | - } elseif (($type_info == 'est_actif') and !$reload) { |
|
| 3745 | - return $plugins_actifs[$plugin] ? 1 : 0; |
|
| 3746 | - } elseif (isset($plugins_actifs[$plugin][$type_info]) and !$reload) { |
|
| 3747 | - return $plugins_actifs[$plugin][$type_info]; |
|
| 3748 | - } else { |
|
| 3749 | - $get_infos = charger_fonction('get_infos', 'plugins'); |
|
| 3750 | - // On prend en compte les extensions |
|
| 3751 | - if (!is_dir($plugins_actifs[$plugin]['dir_type'])) { |
|
| 3752 | - $dir_plugins = constant($plugins_actifs[$plugin]['dir_type']); |
|
| 3753 | - } else { |
|
| 3754 | - $dir_plugins = $plugins_actifs[$plugin]['dir_type']; |
|
| 3755 | - } |
|
| 3756 | - if (!$infos = $get_infos($plugins_actifs[$plugin]['dir'], $reload, $dir_plugins)) { |
|
| 3757 | - return ''; |
|
| 3758 | - } |
|
| 3759 | - if ($type_info == 'tout') { |
|
| 3760 | - return $infos; |
|
| 3761 | - } elseif ($type_info == 'est_actif') { |
|
| 3762 | - return $infos ? 1 : 0; |
|
| 3763 | - } else { |
|
| 3764 | - return strval($infos[$type_info]); |
|
| 3765 | - } |
|
| 3766 | - } |
|
| 3736 | + include_spip('inc/plugin'); |
|
| 3737 | + $plugin = strtoupper($plugin); |
|
| 3738 | + $plugins_actifs = liste_plugin_actifs(); |
|
| 3739 | + |
|
| 3740 | + if (!$plugin) { |
|
| 3741 | + return serialize(array_keys($plugins_actifs)); |
|
| 3742 | + } elseif (empty($plugins_actifs[$plugin]) and !$reload) { |
|
| 3743 | + return ''; |
|
| 3744 | + } elseif (($type_info == 'est_actif') and !$reload) { |
|
| 3745 | + return $plugins_actifs[$plugin] ? 1 : 0; |
|
| 3746 | + } elseif (isset($plugins_actifs[$plugin][$type_info]) and !$reload) { |
|
| 3747 | + return $plugins_actifs[$plugin][$type_info]; |
|
| 3748 | + } else { |
|
| 3749 | + $get_infos = charger_fonction('get_infos', 'plugins'); |
|
| 3750 | + // On prend en compte les extensions |
|
| 3751 | + if (!is_dir($plugins_actifs[$plugin]['dir_type'])) { |
|
| 3752 | + $dir_plugins = constant($plugins_actifs[$plugin]['dir_type']); |
|
| 3753 | + } else { |
|
| 3754 | + $dir_plugins = $plugins_actifs[$plugin]['dir_type']; |
|
| 3755 | + } |
|
| 3756 | + if (!$infos = $get_infos($plugins_actifs[$plugin]['dir'], $reload, $dir_plugins)) { |
|
| 3757 | + return ''; |
|
| 3758 | + } |
|
| 3759 | + if ($type_info == 'tout') { |
|
| 3760 | + return $infos; |
|
| 3761 | + } elseif ($type_info == 'est_actif') { |
|
| 3762 | + return $infos ? 1 : 0; |
|
| 3763 | + } else { |
|
| 3764 | + return strval($infos[$type_info]); |
|
| 3765 | + } |
|
| 3766 | + } |
|
| 3767 | 3767 | } |
| 3768 | 3768 | |
| 3769 | 3769 | |
@@ -3790,9 +3790,9 @@ discard block |
||
| 3790 | 3790 | * Code HTML de l'image de puce de statut à insérer (et du menu de changement si présent) |
| 3791 | 3791 | */ |
| 3792 | 3792 | function puce_changement_statut($id_objet, $statut, $id_rubrique, $type, $ajax = false) { |
| 3793 | - $puce_statut = charger_fonction('puce_statut', 'inc'); |
|
| 3793 | + $puce_statut = charger_fonction('puce_statut', 'inc'); |
|
| 3794 | 3794 | |
| 3795 | - return $puce_statut($id_objet, $statut, $id_rubrique, $type, $ajax); |
|
| 3795 | + return $puce_statut($id_objet, $statut, $id_rubrique, $type, $ajax); |
|
| 3796 | 3796 | } |
| 3797 | 3797 | |
| 3798 | 3798 | |
@@ -3822,13 +3822,13 @@ discard block |
||
| 3822 | 3822 | * Code HTML de l'image de puce de statut à insérer (et du menu de changement si présent) |
| 3823 | 3823 | */ |
| 3824 | 3824 | function filtre_puce_statut_dist($statut, $objet, $id_objet = 0, $id_parent = 0) { |
| 3825 | - static $puce_statut = null; |
|
| 3826 | - if (!$puce_statut) { |
|
| 3827 | - $puce_statut = charger_fonction('puce_statut', 'inc'); |
|
| 3828 | - } |
|
| 3825 | + static $puce_statut = null; |
|
| 3826 | + if (!$puce_statut) { |
|
| 3827 | + $puce_statut = charger_fonction('puce_statut', 'inc'); |
|
| 3828 | + } |
|
| 3829 | 3829 | |
| 3830 | - return $puce_statut($id_objet, $statut, $id_parent, $objet, false, |
|
| 3831 | - objet_info($objet, 'editable') ? _ACTIVER_PUCE_RAPIDE : false); |
|
| 3830 | + return $puce_statut($id_objet, $statut, $id_parent, $objet, false, |
|
| 3831 | + objet_info($objet, 'editable') ? _ACTIVER_PUCE_RAPIDE : false); |
|
| 3832 | 3832 | } |
| 3833 | 3833 | |
| 3834 | 3834 | |
@@ -3855,95 +3855,95 @@ discard block |
||
| 3855 | 3855 | * hash du contexte |
| 3856 | 3856 | */ |
| 3857 | 3857 | function encoder_contexte_ajax($c, $form = '', $emboite = null, $ajaxid = '') { |
| 3858 | - if (is_string($c) |
|
| 3859 | - and @unserialize($c) !== false |
|
| 3860 | - ) { |
|
| 3861 | - $c = unserialize($c); |
|
| 3862 | - } |
|
| 3863 | - |
|
| 3864 | - // supprimer les parametres debut_x |
|
| 3865 | - // pour que la pagination ajax ne soit pas plantee |
|
| 3866 | - // si on charge la page &debut_x=1 : car alors en cliquant sur l'item 0, |
|
| 3867 | - // le debut_x=0 n'existe pas, et on resterait sur 1 |
|
| 3868 | - if (is_array($c)) { |
|
| 3869 | - foreach ($c as $k => $v) { |
|
| 3870 | - if (strpos($k, 'debut_') === 0) { |
|
| 3871 | - unset($c[$k]); |
|
| 3872 | - } |
|
| 3873 | - } |
|
| 3874 | - } |
|
| 3875 | - |
|
| 3876 | - if (!function_exists('calculer_cle_action')) { |
|
| 3877 | - include_spip("inc/securiser_action"); |
|
| 3878 | - } |
|
| 3879 | - |
|
| 3880 | - $c = serialize($c); |
|
| 3881 | - $cle = calculer_cle_action($form . $c); |
|
| 3882 | - $c = "$cle:$c"; |
|
| 3883 | - |
|
| 3884 | - // on ne stocke pas les contextes dans des fichiers en cache |
|
| 3885 | - // par defaut, sauf si cette configuration a été forcée |
|
| 3886 | - // OU que la longueur de l’argument géneré est plus long |
|
| 3887 | - // que ce qui est toléré. |
|
| 3888 | - $cache_contextes_ajax = (defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX); |
|
| 3889 | - if (!$cache_contextes_ajax) { |
|
| 3890 | - $env = $c; |
|
| 3891 | - if (function_exists('gzdeflate') && function_exists('gzinflate')) { |
|
| 3892 | - $env = gzdeflate($env); |
|
| 3893 | - } |
|
| 3894 | - $env = _xor($env); |
|
| 3895 | - $env = base64_encode($env); |
|
| 3896 | - $len = strlen($env); |
|
| 3897 | - // Si l’url est trop longue pour le navigateur |
|
| 3898 | - $max_len = _CACHE_CONTEXTES_AJAX_SUR_LONGUEUR; |
|
| 3899 | - if ($len > $max_len) { |
|
| 3900 | - $cache_contextes_ajax = true; |
|
| 3901 | - spip_log("Contextes AJAX forces en fichiers !" |
|
| 3902 | - . " Cela arrive lorsque la valeur du contexte" |
|
| 3903 | - . " depasse la longueur maximale autorisee ($max_len). Ici : $len." |
|
| 3904 | - , _LOG_AVERTISSEMENT); |
|
| 3905 | - } |
|
| 3906 | - // Sinon si Suhosin est actif et a une la valeur maximale des variables en GET... |
|
| 3907 | - elseif ( |
|
| 3908 | - $max_len = @ini_get('suhosin.get.max_value_length') |
|
| 3909 | - and $max_len < $len |
|
| 3910 | - ) { |
|
| 3911 | - $cache_contextes_ajax = true; |
|
| 3912 | - spip_log("Contextes AJAX forces en fichiers !" |
|
| 3913 | - . " Cela arrive lorsque la valeur du contexte" |
|
| 3914 | - . " depasse la longueur maximale autorisee par Suhosin" |
|
| 3915 | - . " ($max_len) dans 'suhosin.get.max_value_length'. Ici : $len." |
|
| 3916 | - . " Vous devriez modifier les parametres de Suhosin" |
|
| 3917 | - . " pour accepter au moins 1024 caracteres.", _LOG_AVERTISSEMENT); |
|
| 3918 | - } |
|
| 3919 | - |
|
| 3920 | - } |
|
| 3921 | - |
|
| 3922 | - if ($cache_contextes_ajax) { |
|
| 3923 | - $dir = sous_repertoire(_DIR_CACHE, 'contextes'); |
|
| 3924 | - // stocker les contextes sur disque et ne passer qu'un hash dans l'url |
|
| 3925 | - $md5 = md5($c); |
|
| 3926 | - ecrire_fichier("$dir/c$md5", $c); |
|
| 3927 | - $env = $md5; |
|
| 3928 | - } |
|
| 3929 | - |
|
| 3930 | - if ($emboite === null) { |
|
| 3931 | - return $env; |
|
| 3932 | - } |
|
| 3933 | - if (!trim($emboite)) { |
|
| 3934 | - return ""; |
|
| 3935 | - } |
|
| 3936 | - // toujours encoder l'url source dans le bloc ajax |
|
| 3937 | - $r = self(); |
|
| 3938 | - $r = ' data-origin="' . $r . '"'; |
|
| 3939 | - $class = 'ajaxbloc'; |
|
| 3940 | - if ($ajaxid and is_string($ajaxid)) { |
|
| 3941 | - // ajaxid est normalement conforme a un nom de classe css |
|
| 3942 | - // on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution |
|
| 3943 | - $class .= ' ajax-id-' . entites_html($ajaxid); |
|
| 3944 | - } |
|
| 3945 | - |
|
| 3946 | - return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n"; |
|
| 3858 | + if (is_string($c) |
|
| 3859 | + and @unserialize($c) !== false |
|
| 3860 | + ) { |
|
| 3861 | + $c = unserialize($c); |
|
| 3862 | + } |
|
| 3863 | + |
|
| 3864 | + // supprimer les parametres debut_x |
|
| 3865 | + // pour que la pagination ajax ne soit pas plantee |
|
| 3866 | + // si on charge la page &debut_x=1 : car alors en cliquant sur l'item 0, |
|
| 3867 | + // le debut_x=0 n'existe pas, et on resterait sur 1 |
|
| 3868 | + if (is_array($c)) { |
|
| 3869 | + foreach ($c as $k => $v) { |
|
| 3870 | + if (strpos($k, 'debut_') === 0) { |
|
| 3871 | + unset($c[$k]); |
|
| 3872 | + } |
|
| 3873 | + } |
|
| 3874 | + } |
|
| 3875 | + |
|
| 3876 | + if (!function_exists('calculer_cle_action')) { |
|
| 3877 | + include_spip("inc/securiser_action"); |
|
| 3878 | + } |
|
| 3879 | + |
|
| 3880 | + $c = serialize($c); |
|
| 3881 | + $cle = calculer_cle_action($form . $c); |
|
| 3882 | + $c = "$cle:$c"; |
|
| 3883 | + |
|
| 3884 | + // on ne stocke pas les contextes dans des fichiers en cache |
|
| 3885 | + // par defaut, sauf si cette configuration a été forcée |
|
| 3886 | + // OU que la longueur de l’argument géneré est plus long |
|
| 3887 | + // que ce qui est toléré. |
|
| 3888 | + $cache_contextes_ajax = (defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX); |
|
| 3889 | + if (!$cache_contextes_ajax) { |
|
| 3890 | + $env = $c; |
|
| 3891 | + if (function_exists('gzdeflate') && function_exists('gzinflate')) { |
|
| 3892 | + $env = gzdeflate($env); |
|
| 3893 | + } |
|
| 3894 | + $env = _xor($env); |
|
| 3895 | + $env = base64_encode($env); |
|
| 3896 | + $len = strlen($env); |
|
| 3897 | + // Si l’url est trop longue pour le navigateur |
|
| 3898 | + $max_len = _CACHE_CONTEXTES_AJAX_SUR_LONGUEUR; |
|
| 3899 | + if ($len > $max_len) { |
|
| 3900 | + $cache_contextes_ajax = true; |
|
| 3901 | + spip_log("Contextes AJAX forces en fichiers !" |
|
| 3902 | + . " Cela arrive lorsque la valeur du contexte" |
|
| 3903 | + . " depasse la longueur maximale autorisee ($max_len). Ici : $len." |
|
| 3904 | + , _LOG_AVERTISSEMENT); |
|
| 3905 | + } |
|
| 3906 | + // Sinon si Suhosin est actif et a une la valeur maximale des variables en GET... |
|
| 3907 | + elseif ( |
|
| 3908 | + $max_len = @ini_get('suhosin.get.max_value_length') |
|
| 3909 | + and $max_len < $len |
|
| 3910 | + ) { |
|
| 3911 | + $cache_contextes_ajax = true; |
|
| 3912 | + spip_log("Contextes AJAX forces en fichiers !" |
|
| 3913 | + . " Cela arrive lorsque la valeur du contexte" |
|
| 3914 | + . " depasse la longueur maximale autorisee par Suhosin" |
|
| 3915 | + . " ($max_len) dans 'suhosin.get.max_value_length'. Ici : $len." |
|
| 3916 | + . " Vous devriez modifier les parametres de Suhosin" |
|
| 3917 | + . " pour accepter au moins 1024 caracteres.", _LOG_AVERTISSEMENT); |
|
| 3918 | + } |
|
| 3919 | + |
|
| 3920 | + } |
|
| 3921 | + |
|
| 3922 | + if ($cache_contextes_ajax) { |
|
| 3923 | + $dir = sous_repertoire(_DIR_CACHE, 'contextes'); |
|
| 3924 | + // stocker les contextes sur disque et ne passer qu'un hash dans l'url |
|
| 3925 | + $md5 = md5($c); |
|
| 3926 | + ecrire_fichier("$dir/c$md5", $c); |
|
| 3927 | + $env = $md5; |
|
| 3928 | + } |
|
| 3929 | + |
|
| 3930 | + if ($emboite === null) { |
|
| 3931 | + return $env; |
|
| 3932 | + } |
|
| 3933 | + if (!trim($emboite)) { |
|
| 3934 | + return ""; |
|
| 3935 | + } |
|
| 3936 | + // toujours encoder l'url source dans le bloc ajax |
|
| 3937 | + $r = self(); |
|
| 3938 | + $r = ' data-origin="' . $r . '"'; |
|
| 3939 | + $class = 'ajaxbloc'; |
|
| 3940 | + if ($ajaxid and is_string($ajaxid)) { |
|
| 3941 | + // ajaxid est normalement conforme a un nom de classe css |
|
| 3942 | + // on ne verifie pas la conformite, mais on passe entites_html par dessus par precaution |
|
| 3943 | + $class .= ' ajax-id-' . entites_html($ajaxid); |
|
| 3944 | + } |
|
| 3945 | + |
|
| 3946 | + return "<div class='$class' " . "data-ajax-env='$env'$r>\n$emboite</div><!--ajaxbloc-->\n"; |
|
| 3947 | 3947 | } |
| 3948 | 3948 | |
| 3949 | 3949 | /** |
@@ -3963,36 +3963,36 @@ discard block |
||
| 3963 | 3963 | * - false : erreur de décodage |
| 3964 | 3964 | */ |
| 3965 | 3965 | function decoder_contexte_ajax($c, $form = '') { |
| 3966 | - if (!function_exists('calculer_cle_action')) { |
|
| 3967 | - include_spip("inc/securiser_action"); |
|
| 3968 | - } |
|
| 3969 | - if (((defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX) or strlen($c) == 32) |
|
| 3970 | - and $dir = sous_repertoire(_DIR_CACHE, 'contextes') |
|
| 3971 | - and lire_fichier("$dir/c$c", $contexte) |
|
| 3972 | - ) { |
|
| 3973 | - $c = $contexte; |
|
| 3974 | - } else { |
|
| 3975 | - $c = @base64_decode($c); |
|
| 3976 | - $c = _xor($c); |
|
| 3977 | - if (function_exists('gzdeflate') && function_exists('gzinflate')) { |
|
| 3978 | - $c = @gzinflate($c); |
|
| 3979 | - } |
|
| 3980 | - } |
|
| 3981 | - |
|
| 3982 | - // extraire la signature en debut de contexte |
|
| 3983 | - // et la verifier avant de deserializer |
|
| 3984 | - // format : signature:donneesserializees |
|
| 3985 | - if ($p = strpos($c,":")){ |
|
| 3986 | - $cle = substr($c,0,$p); |
|
| 3987 | - $c = substr($c,$p+1); |
|
| 3988 | - |
|
| 3989 | - if ($cle == calculer_cle_action($form . $c)) { |
|
| 3990 | - $env = @unserialize($c); |
|
| 3991 | - return $env; |
|
| 3992 | - } |
|
| 3993 | - } |
|
| 3994 | - |
|
| 3995 | - return false; |
|
| 3966 | + if (!function_exists('calculer_cle_action')) { |
|
| 3967 | + include_spip("inc/securiser_action"); |
|
| 3968 | + } |
|
| 3969 | + if (((defined('_CACHE_CONTEXTES_AJAX') and _CACHE_CONTEXTES_AJAX) or strlen($c) == 32) |
|
| 3970 | + and $dir = sous_repertoire(_DIR_CACHE, 'contextes') |
|
| 3971 | + and lire_fichier("$dir/c$c", $contexte) |
|
| 3972 | + ) { |
|
| 3973 | + $c = $contexte; |
|
| 3974 | + } else { |
|
| 3975 | + $c = @base64_decode($c); |
|
| 3976 | + $c = _xor($c); |
|
| 3977 | + if (function_exists('gzdeflate') && function_exists('gzinflate')) { |
|
| 3978 | + $c = @gzinflate($c); |
|
| 3979 | + } |
|
| 3980 | + } |
|
| 3981 | + |
|
| 3982 | + // extraire la signature en debut de contexte |
|
| 3983 | + // et la verifier avant de deserializer |
|
| 3984 | + // format : signature:donneesserializees |
|
| 3985 | + if ($p = strpos($c,":")){ |
|
| 3986 | + $cle = substr($c,0,$p); |
|
| 3987 | + $c = substr($c,$p+1); |
|
| 3988 | + |
|
| 3989 | + if ($cle == calculer_cle_action($form . $c)) { |
|
| 3990 | + $env = @unserialize($c); |
|
| 3991 | + return $env; |
|
| 3992 | + } |
|
| 3993 | + } |
|
| 3994 | + |
|
| 3995 | + return false; |
|
| 3996 | 3996 | } |
| 3997 | 3997 | |
| 3998 | 3998 | |
@@ -4010,20 +4010,20 @@ discard block |
||
| 4010 | 4010 | * Message décrypté ou encrypté |
| 4011 | 4011 | **/ |
| 4012 | 4012 | function _xor($message, $key = null) { |
| 4013 | - if (is_null($key)) { |
|
| 4014 | - if (!function_exists('calculer_cle_action')) { |
|
| 4015 | - include_spip("inc/securiser_action"); |
|
| 4016 | - } |
|
| 4017 | - $key = pack("H*", calculer_cle_action('_xor')); |
|
| 4018 | - } |
|
| 4013 | + if (is_null($key)) { |
|
| 4014 | + if (!function_exists('calculer_cle_action')) { |
|
| 4015 | + include_spip("inc/securiser_action"); |
|
| 4016 | + } |
|
| 4017 | + $key = pack("H*", calculer_cle_action('_xor')); |
|
| 4018 | + } |
|
| 4019 | 4019 | |
| 4020 | - $keylen = strlen($key); |
|
| 4021 | - $messagelen = strlen($message); |
|
| 4022 | - for ($i = 0; $i < $messagelen; $i++) { |
|
| 4023 | - $message[$i] = ~($message[$i] ^ $key[$i % $keylen]); |
|
| 4024 | - } |
|
| 4020 | + $keylen = strlen($key); |
|
| 4021 | + $messagelen = strlen($message); |
|
| 4022 | + for ($i = 0; $i < $messagelen; $i++) { |
|
| 4023 | + $message[$i] = ~($message[$i] ^ $key[$i % $keylen]); |
|
| 4024 | + } |
|
| 4025 | 4025 | |
| 4026 | - return $message; |
|
| 4026 | + return $message; |
|
| 4027 | 4027 | } |
| 4028 | 4028 | |
| 4029 | 4029 | /** |
@@ -4086,37 +4086,37 @@ discard block |
||
| 4086 | 4086 | * Code HTML |
| 4087 | 4087 | */ |
| 4088 | 4088 | function lien_ou_expose($url, $libelle = null, $on = false, $class = "", $title = "", $rel = "", $evt = '') { |
| 4089 | - if ($on) { |
|
| 4090 | - $bal = 'strong'; |
|
| 4091 | - $class = ""; |
|
| 4092 | - $att = ""; |
|
| 4093 | - // si $on passe la balise et optionnelement une ou ++classe |
|
| 4094 | - // a.active span.selected.active etc.... |
|
| 4095 | - if (is_string($on) and (strncmp($on, 'a', 1)==0 or strncmp($on, 'span', 4)==0 or strncmp($on, 'strong', 6)==0)){ |
|
| 4096 | - $on = explode(".", $on); |
|
| 4097 | - // on verifie que c'est exactement une des 3 balises a, span ou strong |
|
| 4098 | - if (in_array(reset($on), array('a', 'span', 'strong'))){ |
|
| 4099 | - $bal = array_shift($on); |
|
| 4100 | - $class = implode(" ", $on); |
|
| 4101 | - if ($bal=="a"){ |
|
| 4102 | - $att = 'href="#" '; |
|
| 4103 | - } |
|
| 4104 | - } |
|
| 4105 | - } |
|
| 4106 | - $att .= 'class="' . ($class ? attribut_html($class) . ' ' : '') . (defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on') . '"'; |
|
| 4107 | - } else { |
|
| 4108 | - $bal = 'a'; |
|
| 4109 | - $att = "href='$url'" |
|
| 4110 | - . ($title ? " title='" . attribut_html($title) . "'" : '') |
|
| 4111 | - . ($class ? " class='" . attribut_html($class) . "'" : '') |
|
| 4112 | - . ($rel ? " rel='" . attribut_html($rel) . "'" : '') |
|
| 4113 | - . $evt; |
|
| 4114 | - } |
|
| 4115 | - if ($libelle === null) { |
|
| 4116 | - $libelle = $url; |
|
| 4117 | - } |
|
| 4118 | - |
|
| 4119 | - return "<$bal $att>$libelle</$bal>"; |
|
| 4089 | + if ($on) { |
|
| 4090 | + $bal = 'strong'; |
|
| 4091 | + $class = ""; |
|
| 4092 | + $att = ""; |
|
| 4093 | + // si $on passe la balise et optionnelement une ou ++classe |
|
| 4094 | + // a.active span.selected.active etc.... |
|
| 4095 | + if (is_string($on) and (strncmp($on, 'a', 1)==0 or strncmp($on, 'span', 4)==0 or strncmp($on, 'strong', 6)==0)){ |
|
| 4096 | + $on = explode(".", $on); |
|
| 4097 | + // on verifie que c'est exactement une des 3 balises a, span ou strong |
|
| 4098 | + if (in_array(reset($on), array('a', 'span', 'strong'))){ |
|
| 4099 | + $bal = array_shift($on); |
|
| 4100 | + $class = implode(" ", $on); |
|
| 4101 | + if ($bal=="a"){ |
|
| 4102 | + $att = 'href="#" '; |
|
| 4103 | + } |
|
| 4104 | + } |
|
| 4105 | + } |
|
| 4106 | + $att .= 'class="' . ($class ? attribut_html($class) . ' ' : '') . (defined('_LIEN_OU_EXPOSE_CLASS_ON') ? _LIEN_OU_EXPOSE_CLASS_ON : 'on') . '"'; |
|
| 4107 | + } else { |
|
| 4108 | + $bal = 'a'; |
|
| 4109 | + $att = "href='$url'" |
|
| 4110 | + . ($title ? " title='" . attribut_html($title) . "'" : '') |
|
| 4111 | + . ($class ? " class='" . attribut_html($class) . "'" : '') |
|
| 4112 | + . ($rel ? " rel='" . attribut_html($rel) . "'" : '') |
|
| 4113 | + . $evt; |
|
| 4114 | + } |
|
| 4115 | + if ($libelle === null) { |
|
| 4116 | + $libelle = $url; |
|
| 4117 | + } |
|
| 4118 | + |
|
| 4119 | + return "<$bal $att>$libelle</$bal>"; |
|
| 4120 | 4120 | } |
| 4121 | 4121 | |
| 4122 | 4122 | |
@@ -4133,37 +4133,37 @@ discard block |
||
| 4133 | 4133 | * @return string : la chaine de langue finale en utilisant la fonction _T() |
| 4134 | 4134 | */ |
| 4135 | 4135 | function singulier_ou_pluriel($nb, $chaine_un, $chaine_plusieurs, $var = 'nb', $vars = array()) { |
| 4136 | - static $local_singulier_ou_pluriel = array(); |
|
| 4136 | + static $local_singulier_ou_pluriel = array(); |
|
| 4137 | 4137 | |
| 4138 | - // si nb=0 ou pas de $vars valide on retourne une chaine vide, a traiter par un |sinon |
|
| 4139 | - if (!is_numeric($nb) or $nb == 0) { |
|
| 4140 | - return ""; |
|
| 4141 | - } |
|
| 4142 | - if (!is_array($vars)) { |
|
| 4143 | - return ""; |
|
| 4144 | - } |
|
| 4138 | + // si nb=0 ou pas de $vars valide on retourne une chaine vide, a traiter par un |sinon |
|
| 4139 | + if (!is_numeric($nb) or $nb == 0) { |
|
| 4140 | + return ""; |
|
| 4141 | + } |
|
| 4142 | + if (!is_array($vars)) { |
|
| 4143 | + return ""; |
|
| 4144 | + } |
|
| 4145 | 4145 | |
| 4146 | - $langue = $GLOBALS['spip_lang']; |
|
| 4147 | - if (!isset($local_singulier_ou_pluriel[$langue])) { |
|
| 4148 | - $local_singulier_ou_pluriel[$langue] = false; |
|
| 4149 | - if ($f = charger_fonction("singulier_ou_pluriel_${langue}", 'inc', true) |
|
| 4150 | - or $f = charger_fonction("singulier_ou_pluriel", 'inc', true)) { |
|
| 4151 | - $local_singulier_ou_pluriel[$langue] = $f; |
|
| 4152 | - } |
|
| 4153 | - } |
|
| 4146 | + $langue = $GLOBALS['spip_lang']; |
|
| 4147 | + if (!isset($local_singulier_ou_pluriel[$langue])) { |
|
| 4148 | + $local_singulier_ou_pluriel[$langue] = false; |
|
| 4149 | + if ($f = charger_fonction("singulier_ou_pluriel_${langue}", 'inc', true) |
|
| 4150 | + or $f = charger_fonction("singulier_ou_pluriel", 'inc', true)) { |
|
| 4151 | + $local_singulier_ou_pluriel[$langue] = $f; |
|
| 4152 | + } |
|
| 4153 | + } |
|
| 4154 | 4154 | |
| 4155 | - // si on a une surcharge on l'utilise |
|
| 4156 | - if ($local_singulier_ou_pluriel[$langue]) { |
|
| 4157 | - return ($local_singulier_ou_pluriel[$langue])($nb, $chaine_un, $chaine_plusieurs, $var, $vars); |
|
| 4158 | - } |
|
| 4155 | + // si on a une surcharge on l'utilise |
|
| 4156 | + if ($local_singulier_ou_pluriel[$langue]) { |
|
| 4157 | + return ($local_singulier_ou_pluriel[$langue])($nb, $chaine_un, $chaine_plusieurs, $var, $vars); |
|
| 4158 | + } |
|
| 4159 | 4159 | |
| 4160 | - // sinon traitement par defaut |
|
| 4161 | - $vars[$var] = $nb; |
|
| 4162 | - if ($nb >= 2) { |
|
| 4163 | - return _T($chaine_plusieurs, $vars); |
|
| 4164 | - } else { |
|
| 4165 | - return _T($chaine_un, $vars); |
|
| 4166 | - } |
|
| 4160 | + // sinon traitement par defaut |
|
| 4161 | + $vars[$var] = $nb; |
|
| 4162 | + if ($nb >= 2) { |
|
| 4163 | + return _T($chaine_plusieurs, $vars); |
|
| 4164 | + } else { |
|
| 4165 | + return _T($chaine_un, $vars); |
|
| 4166 | + } |
|
| 4167 | 4167 | } |
| 4168 | 4168 | |
| 4169 | 4169 | |
@@ -4191,71 +4191,71 @@ discard block |
||
| 4191 | 4191 | */ |
| 4192 | 4192 | function prepare_icone_base($type, $lien, $texte, $fond, $fonction = '', $class = '', $javascript = '') { |
| 4193 | 4193 | |
| 4194 | - $class_lien = $class_bouton = $class; |
|
| 4195 | - |
|
| 4196 | - // Normaliser la fonction et compléter la classe en fonction |
|
| 4197 | - if (in_array($fonction, ['del', 'supprimer.gif'])) { |
|
| 4198 | - $class_lien .= ' danger'; |
|
| 4199 | - $class_bouton .= ' btn_danger'; |
|
| 4200 | - } elseif ($fonction == 'rien.gif') { |
|
| 4201 | - $fonction = ''; |
|
| 4202 | - } elseif ($fonction == 'delsafe') { |
|
| 4203 | - $fonction = 'del'; |
|
| 4204 | - } |
|
| 4205 | - |
|
| 4206 | - $fond_origine = $fond; |
|
| 4207 | - // Remappage des icone : article-24.png+new => article-new-24.png |
|
| 4208 | - if ($icone_renommer = charger_fonction('icone_renommer', 'inc', true)) { |
|
| 4209 | - list($fond, $fonction) = $icone_renommer($fond, $fonction); |
|
| 4210 | - } |
|
| 4211 | - |
|
| 4212 | - // Ajouter le type d'objet dans la classe |
|
| 4213 | - $objet_type = substr(basename($fond), 0, -4); |
|
| 4214 | - $class_lien .= " $objet_type"; |
|
| 4215 | - $class_bouton .= " $objet_type"; |
|
| 4216 | - |
|
| 4217 | - // Texte |
|
| 4218 | - $alt = attribut_html($texte); |
|
| 4219 | - $title = " title=\"$alt\""; // est-ce pertinent de doubler le alt par un title ? |
|
| 4220 | - |
|
| 4221 | - // Liens : préparer les classes ajax |
|
| 4222 | - $ajax = ''; |
|
| 4223 | - if ($type === 'lien') { |
|
| 4224 | - if (strpos($class_lien, 'ajax') !== false) { |
|
| 4225 | - $ajax = 'ajax'; |
|
| 4226 | - if (strpos($class_lien, 'preload') !== false) { |
|
| 4227 | - $ajax .= ' preload'; |
|
| 4228 | - } |
|
| 4229 | - if (strpos($class_lien, 'nocache') !== false) { |
|
| 4230 | - $ajax .= ' nocache'; |
|
| 4231 | - } |
|
| 4232 | - $ajax = " class='$ajax'"; |
|
| 4233 | - } |
|
| 4234 | - } |
|
| 4235 | - |
|
| 4236 | - // Repérer la taille et l'ajouter dans la classe |
|
| 4237 | - $size = 24; |
|
| 4238 | - if (preg_match("/-([0-9]{1,3})[.](gif|png|svg)$/i", $fond, $match) |
|
| 4239 | - or preg_match("/-([0-9]{1,3})([.](gif|png|svg))?$/i", $fond_origine, $match)) { |
|
| 4240 | - $size = $match[1]; |
|
| 4241 | - } |
|
| 4242 | - $class_lien .= " s$size"; |
|
| 4243 | - $class_bouton .= " s$size"; |
|
| 4244 | - |
|
| 4245 | - // Icône |
|
| 4246 | - $icone = http_img_pack($fond, $alt, "width='$size' height='$size'"); |
|
| 4247 | - $icone = "<span class=\"icone-image".($fonction ? " icone-fonction icone-fonction-$fonction" : "") . "\">$icone</span>"; |
|
| 4248 | - |
|
| 4249 | - // Markup final |
|
| 4250 | - if ($type == 'lien') { |
|
| 4251 | - return "<span class='icone $class_lien'>" |
|
| 4252 | - . "<a href='$lien'$title$ajax$javascript>" |
|
| 4253 | - . $icone |
|
| 4254 | - . "<b>$texte</b>" |
|
| 4255 | - . "</a></span>\n"; |
|
| 4256 | - } else { |
|
| 4257 | - return bouton_action("$icone $texte", $lien, $class_bouton, $javascript, $alt); |
|
| 4258 | - } |
|
| 4194 | + $class_lien = $class_bouton = $class; |
|
| 4195 | + |
|
| 4196 | + // Normaliser la fonction et compléter la classe en fonction |
|
| 4197 | + if (in_array($fonction, ['del', 'supprimer.gif'])) { |
|
| 4198 | + $class_lien .= ' danger'; |
|
| 4199 | + $class_bouton .= ' btn_danger'; |
|
| 4200 | + } elseif ($fonction == 'rien.gif') { |
|
| 4201 | + $fonction = ''; |
|
| 4202 | + } elseif ($fonction == 'delsafe') { |
|
| 4203 | + $fonction = 'del'; |
|
| 4204 | + } |
|
| 4205 | + |
|
| 4206 | + $fond_origine = $fond; |
|
| 4207 | + // Remappage des icone : article-24.png+new => article-new-24.png |
|
| 4208 | + if ($icone_renommer = charger_fonction('icone_renommer', 'inc', true)) { |
|
| 4209 | + list($fond, $fonction) = $icone_renommer($fond, $fonction); |
|
| 4210 | + } |
|
| 4211 | + |
|
| 4212 | + // Ajouter le type d'objet dans la classe |
|
| 4213 | + $objet_type = substr(basename($fond), 0, -4); |
|
| 4214 | + $class_lien .= " $objet_type"; |
|
| 4215 | + $class_bouton .= " $objet_type"; |
|
| 4216 | + |
|
| 4217 | + // Texte |
|
| 4218 | + $alt = attribut_html($texte); |
|
| 4219 | + $title = " title=\"$alt\""; // est-ce pertinent de doubler le alt par un title ? |
|
| 4220 | + |
|
| 4221 | + // Liens : préparer les classes ajax |
|
| 4222 | + $ajax = ''; |
|
| 4223 | + if ($type === 'lien') { |
|
| 4224 | + if (strpos($class_lien, 'ajax') !== false) { |
|
| 4225 | + $ajax = 'ajax'; |
|
| 4226 | + if (strpos($class_lien, 'preload') !== false) { |
|
| 4227 | + $ajax .= ' preload'; |
|
| 4228 | + } |
|
| 4229 | + if (strpos($class_lien, 'nocache') !== false) { |
|
| 4230 | + $ajax .= ' nocache'; |
|
| 4231 | + } |
|
| 4232 | + $ajax = " class='$ajax'"; |
|
| 4233 | + } |
|
| 4234 | + } |
|
| 4235 | + |
|
| 4236 | + // Repérer la taille et l'ajouter dans la classe |
|
| 4237 | + $size = 24; |
|
| 4238 | + if (preg_match("/-([0-9]{1,3})[.](gif|png|svg)$/i", $fond, $match) |
|
| 4239 | + or preg_match("/-([0-9]{1,3})([.](gif|png|svg))?$/i", $fond_origine, $match)) { |
|
| 4240 | + $size = $match[1]; |
|
| 4241 | + } |
|
| 4242 | + $class_lien .= " s$size"; |
|
| 4243 | + $class_bouton .= " s$size"; |
|
| 4244 | + |
|
| 4245 | + // Icône |
|
| 4246 | + $icone = http_img_pack($fond, $alt, "width='$size' height='$size'"); |
|
| 4247 | + $icone = "<span class=\"icone-image".($fonction ? " icone-fonction icone-fonction-$fonction" : "") . "\">$icone</span>"; |
|
| 4248 | + |
|
| 4249 | + // Markup final |
|
| 4250 | + if ($type == 'lien') { |
|
| 4251 | + return "<span class='icone $class_lien'>" |
|
| 4252 | + . "<a href='$lien'$title$ajax$javascript>" |
|
| 4253 | + . $icone |
|
| 4254 | + . "<b>$texte</b>" |
|
| 4255 | + . "</a></span>\n"; |
|
| 4256 | + } else { |
|
| 4257 | + return bouton_action("$icone $texte", $lien, $class_bouton, $javascript, $alt); |
|
| 4258 | + } |
|
| 4259 | 4259 | } |
| 4260 | 4260 | |
| 4261 | 4261 | /** |
@@ -4279,7 +4279,7 @@ discard block |
||
| 4279 | 4279 | * Code HTML du lien |
| 4280 | 4280 | **/ |
| 4281 | 4281 | function icone_base($lien, $texte, $fond, $fonction = "", $class = "", $javascript = "") { |
| 4282 | - return prepare_icone_base('lien', $lien, $texte, $fond, $fonction, $class, $javascript); |
|
| 4282 | + return prepare_icone_base('lien', $lien, $texte, $fond, $fonction, $class, $javascript); |
|
| 4283 | 4283 | } |
| 4284 | 4284 | |
| 4285 | 4285 | /** |
@@ -4314,7 +4314,7 @@ discard block |
||
| 4314 | 4314 | * Code HTML du lien |
| 4315 | 4315 | **/ |
| 4316 | 4316 | function filtre_icone_verticale_dist($lien, $texte, $fond, $fonction = "", $class = "", $javascript = "") { |
| 4317 | - return icone_base($lien, $texte, $fond, $fonction, "verticale $class", $javascript); |
|
| 4317 | + return icone_base($lien, $texte, $fond, $fonction, "verticale $class", $javascript); |
|
| 4318 | 4318 | } |
| 4319 | 4319 | |
| 4320 | 4320 | /** |
@@ -4359,7 +4359,7 @@ discard block |
||
| 4359 | 4359 | * Code HTML du lien |
| 4360 | 4360 | **/ |
| 4361 | 4361 | function filtre_icone_horizontale_dist($lien, $texte, $fond, $fonction = "", $class = "", $javascript = "") { |
| 4362 | - return icone_base($lien, $texte, $fond, $fonction, "horizontale $class", $javascript); |
|
| 4362 | + return icone_base($lien, $texte, $fond, $fonction, "horizontale $class", $javascript); |
|
| 4363 | 4363 | } |
| 4364 | 4364 | |
| 4365 | 4365 | /** |
@@ -4390,7 +4390,7 @@ discard block |
||
| 4390 | 4390 | * Code HTML du lien |
| 4391 | 4391 | **/ |
| 4392 | 4392 | function filtre_bouton_action_horizontal_dist($lien, $texte, $fond, $fonction = "", $class = "", $confirm = "") { |
| 4393 | - return prepare_icone_base('bouton', $lien, $texte, $fond, $fonction, $class, $confirm); |
|
| 4393 | + return prepare_icone_base('bouton', $lien, $texte, $fond, $fonction, $class, $confirm); |
|
| 4394 | 4394 | } |
| 4395 | 4395 | |
| 4396 | 4396 | /** |
@@ -4421,7 +4421,7 @@ discard block |
||
| 4421 | 4421 | * Code HTML du lien |
| 4422 | 4422 | */ |
| 4423 | 4423 | function filtre_icone_dist($lien, $texte, $fond, $align = "", $fonction = "", $class = "", $javascript = "") { |
| 4424 | - return icone_base($lien, $texte, $fond, $fonction, "verticale $align $class", $javascript); |
|
| 4424 | + return icone_base($lien, $texte, $fond, $fonction, "verticale $align $class", $javascript); |
|
| 4425 | 4425 | } |
| 4426 | 4426 | |
| 4427 | 4427 | |
@@ -4469,24 +4469,24 @@ discard block |
||
| 4469 | 4469 | * @return string Code CSS |
| 4470 | 4470 | */ |
| 4471 | 4471 | function bando_images_background() { |
| 4472 | - include_spip('inc/bandeau'); |
|
| 4473 | - // recuperer tous les boutons et leurs images |
|
| 4474 | - $boutons = definir_barre_boutons(definir_barre_contexte(), true, false); |
|
| 4472 | + include_spip('inc/bandeau'); |
|
| 4473 | + // recuperer tous les boutons et leurs images |
|
| 4474 | + $boutons = definir_barre_boutons(definir_barre_contexte(), true, false); |
|
| 4475 | 4475 | |
| 4476 | - $res = ""; |
|
| 4477 | - foreach ($boutons as $page => $detail) { |
|
| 4478 | - $selecteur = (in_array($page, array('outils_rapides', 'outils_collaboratifs')) ? "" : ".navigation_avec_icones "); |
|
| 4479 | - if (is_array($detail->sousmenu)) { |
|
| 4480 | - foreach ($detail->sousmenu as $souspage => $sousdetail) { |
|
| 4481 | - if ($sousdetail->icone and strlen(trim($sousdetail->icone))) { |
|
| 4482 | - $img = http_img_variante_svg_si_possible($sousdetail->icone); |
|
| 4483 | - $res .= "\n$selecteur.bando2_$souspage {background-image:url($img);}"; |
|
| 4484 | - } |
|
| 4485 | - } |
|
| 4486 | - } |
|
| 4487 | - } |
|
| 4476 | + $res = ""; |
|
| 4477 | + foreach ($boutons as $page => $detail) { |
|
| 4478 | + $selecteur = (in_array($page, array('outils_rapides', 'outils_collaboratifs')) ? "" : ".navigation_avec_icones "); |
|
| 4479 | + if (is_array($detail->sousmenu)) { |
|
| 4480 | + foreach ($detail->sousmenu as $souspage => $sousdetail) { |
|
| 4481 | + if ($sousdetail->icone and strlen(trim($sousdetail->icone))) { |
|
| 4482 | + $img = http_img_variante_svg_si_possible($sousdetail->icone); |
|
| 4483 | + $res .= "\n$selecteur.bando2_$souspage {background-image:url($img);}"; |
|
| 4484 | + } |
|
| 4485 | + } |
|
| 4486 | + } |
|
| 4487 | + } |
|
| 4488 | 4488 | |
| 4489 | - return $res; |
|
| 4489 | + return $res; |
|
| 4490 | 4490 | } |
| 4491 | 4491 | |
| 4492 | 4492 | /** |
@@ -4511,27 +4511,27 @@ discard block |
||
| 4511 | 4511 | */ |
| 4512 | 4512 | function bouton_action($libelle, $url, $class = '', $confirm = '', $title = '', $callback = '') { |
| 4513 | 4513 | |
| 4514 | - // Classes : dispatcher `ajax` sur le formulaire |
|
| 4515 | - $class_form = ''; |
|
| 4516 | - if (strpos($class, 'ajax') !== false) { |
|
| 4517 | - $class_form = 'ajax'; |
|
| 4518 | - $class = str_replace('ajax', '', $class); |
|
| 4519 | - } |
|
| 4520 | - $class_btn = 'submit ' . trim($class); |
|
| 4514 | + // Classes : dispatcher `ajax` sur le formulaire |
|
| 4515 | + $class_form = ''; |
|
| 4516 | + if (strpos($class, 'ajax') !== false) { |
|
| 4517 | + $class_form = 'ajax'; |
|
| 4518 | + $class = str_replace('ajax', '', $class); |
|
| 4519 | + } |
|
| 4520 | + $class_btn = 'submit ' . trim($class); |
|
| 4521 | 4521 | |
| 4522 | - if ($confirm) { |
|
| 4523 | - $confirm = "confirm(\"" . attribut_html($confirm) . "\")"; |
|
| 4524 | - if ($callback) { |
|
| 4525 | - $callback = "$confirm?($callback):false"; |
|
| 4526 | - } else { |
|
| 4527 | - $callback = $confirm; |
|
| 4528 | - } |
|
| 4529 | - } |
|
| 4530 | - $onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : ""; |
|
| 4531 | - $title = $title ? " title='$title'" : ''; |
|
| 4522 | + if ($confirm) { |
|
| 4523 | + $confirm = "confirm(\"" . attribut_html($confirm) . "\")"; |
|
| 4524 | + if ($callback) { |
|
| 4525 | + $callback = "$confirm?($callback):false"; |
|
| 4526 | + } else { |
|
| 4527 | + $callback = $confirm; |
|
| 4528 | + } |
|
| 4529 | + } |
|
| 4530 | + $onclick = $callback ? " onclick='return " . addcslashes($callback, "'") . "'" : ""; |
|
| 4531 | + $title = $title ? " title='$title'" : ''; |
|
| 4532 | 4532 | |
| 4533 | - return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>" . form_hidden($url) |
|
| 4534 | - . "<button type='submit' class='$class_btn'$title$onclick>$libelle</button></div></form>"; |
|
| 4533 | + return "<form class='bouton_action_post $class_form' method='post' action='$url'><div>" . form_hidden($url) |
|
| 4534 | + . "<button type='submit' class='$class_btn'$title$onclick>$libelle</button></div></form>"; |
|
| 4535 | 4535 | } |
| 4536 | 4536 | |
| 4537 | 4537 | /** |
@@ -4554,89 +4554,89 @@ discard block |
||
| 4554 | 4554 | * @return string |
| 4555 | 4555 | */ |
| 4556 | 4556 | function generer_info_entite($id_objet, $type_objet, $info, $etoile = '', $params = []) { |
| 4557 | - static $trouver_table = null; |
|
| 4558 | - static $objets; |
|
| 4559 | - |
|
| 4560 | - // On verifie qu'on a tout ce qu'il faut |
|
| 4561 | - $id_objet = intval($id_objet); |
|
| 4562 | - if (!($id_objet and $type_objet and $info)) { |
|
| 4563 | - return ''; |
|
| 4564 | - } |
|
| 4565 | - |
|
| 4566 | - // si on a deja note que l'objet n'existe pas, ne pas aller plus loin |
|
| 4567 | - if (isset($objets[$type_objet]) and $objets[$type_objet] === false) { |
|
| 4568 | - return ''; |
|
| 4569 | - } |
|
| 4570 | - |
|
| 4571 | - // Si on demande l'url, on retourne direct la fonction |
|
| 4572 | - if ($info == 'url') { |
|
| 4573 | - return generer_url_entite($id_objet, $type_objet, ...$params); |
|
| 4574 | - } |
|
| 4575 | - |
|
| 4576 | - // Sinon on va tout chercher dans la table et on garde en memoire |
|
| 4577 | - $demande_titre = ($info === 'titre'); |
|
| 4578 | - $demande_introduction = ($info === 'introduction'); |
|
| 4579 | - |
|
| 4580 | - // 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 |
|
| 4581 | - if (!isset($objets[$type_objet][$id_objet]) |
|
| 4582 | - or |
|
| 4583 | - ($demande_titre and !isset($objets[$type_objet][$id_objet]['titre'])) |
|
| 4584 | - ) { |
|
| 4585 | - if (!$trouver_table) { |
|
| 4586 | - $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 4587 | - } |
|
| 4588 | - $desc = $trouver_table(table_objet_sql($type_objet)); |
|
| 4589 | - if (!$desc) { |
|
| 4590 | - return $objets[$type_objet] = false; |
|
| 4591 | - } |
|
| 4592 | - |
|
| 4593 | - // Si on demande le titre, on le gere en interne |
|
| 4594 | - $champ_titre = ""; |
|
| 4595 | - if ($demande_titre) { |
|
| 4596 | - // si pas de titre declare mais champ titre, il sera peuple par le select * |
|
| 4597 | - $champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : ''; |
|
| 4598 | - } |
|
| 4599 | - include_spip('base/abstract_sql'); |
|
| 4600 | - include_spip('base/connect_sql'); |
|
| 4601 | - $objets[$type_objet][$id_objet] = sql_fetsel( |
|
| 4602 | - '*' . $champ_titre, |
|
| 4603 | - $desc['table_sql'], |
|
| 4604 | - id_table_objet($type_objet) . ' = ' . intval($id_objet) |
|
| 4605 | - ); |
|
| 4606 | - |
|
| 4607 | - // Toujours noter la longueur d'introduction, même si pas demandé cette fois-ci |
|
| 4608 | - $objets[$type_objet]['introduction_longueur'] = $desc['introduction_longueur'] ?? null; |
|
| 4609 | - } |
|
| 4610 | - |
|
| 4611 | - // Pour les fonction generer_xxx, si on demande l'introduction, |
|
| 4612 | - // ajouter la longueur au début des params supplémentaires |
|
| 4613 | - if ($demande_introduction) { |
|
| 4614 | - $introduction_longueur = $objets[$type_objet]['introduction_longueur']; |
|
| 4615 | - array_unshift($params, $introduction_longueur); |
|
| 4616 | - } |
|
| 4617 | - |
|
| 4618 | - // Si la fonction generer_TRUC_TYPE existe, on l'utilise pour formater $info_generee |
|
| 4619 | - if ($generer = charger_fonction("generer_${info}_${type_objet}", '', true)) { |
|
| 4620 | - $info_generee = $generer($id_objet, $objets[$type_objet][$id_objet], ...$params); |
|
| 4621 | - } // Si la fonction generer_TRUC_entite existe, on l'utilise pour formater $info_generee |
|
| 4622 | - else { |
|
| 4623 | - if ($generer = charger_fonction("generer_${info}_entite", '', true)) { |
|
| 4624 | - $info_generee = $generer($id_objet, $type_objet, $objets[$type_objet][$id_objet], ...$params); |
|
| 4625 | - } // Sinon on prend directement le champ SQL tel quel |
|
| 4626 | - else { |
|
| 4627 | - $info_generee = (isset($objets[$type_objet][$id_objet][$info]) ? $objets[$type_objet][$id_objet][$info] : ''); |
|
| 4628 | - } |
|
| 4629 | - } |
|
| 4630 | - |
|
| 4631 | - // On va ensuite appliquer les traitements automatiques si besoin |
|
| 4632 | - if (!$etoile) { |
|
| 4633 | - // FIXME: on fournit un ENV minimum avec id et type et connect='' |
|
| 4634 | - // mais ce fonctionnement est a ameliorer ! |
|
| 4635 | - $info_generee = appliquer_traitement_champ($info_generee, $info, table_objet($type_objet), |
|
| 4636 | - array('id_objet' => $id_objet, 'objet' => $type_objet, '')); |
|
| 4637 | - } |
|
| 4638 | - |
|
| 4639 | - return $info_generee; |
|
| 4557 | + static $trouver_table = null; |
|
| 4558 | + static $objets; |
|
| 4559 | + |
|
| 4560 | + // On verifie qu'on a tout ce qu'il faut |
|
| 4561 | + $id_objet = intval($id_objet); |
|
| 4562 | + if (!($id_objet and $type_objet and $info)) { |
|
| 4563 | + return ''; |
|
| 4564 | + } |
|
| 4565 | + |
|
| 4566 | + // si on a deja note que l'objet n'existe pas, ne pas aller plus loin |
|
| 4567 | + if (isset($objets[$type_objet]) and $objets[$type_objet] === false) { |
|
| 4568 | + return ''; |
|
| 4569 | + } |
|
| 4570 | + |
|
| 4571 | + // Si on demande l'url, on retourne direct la fonction |
|
| 4572 | + if ($info == 'url') { |
|
| 4573 | + return generer_url_entite($id_objet, $type_objet, ...$params); |
|
| 4574 | + } |
|
| 4575 | + |
|
| 4576 | + // Sinon on va tout chercher dans la table et on garde en memoire |
|
| 4577 | + $demande_titre = ($info === 'titre'); |
|
| 4578 | + $demande_introduction = ($info === 'introduction'); |
|
| 4579 | + |
|
| 4580 | + // 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 |
|
| 4581 | + if (!isset($objets[$type_objet][$id_objet]) |
|
| 4582 | + or |
|
| 4583 | + ($demande_titre and !isset($objets[$type_objet][$id_objet]['titre'])) |
|
| 4584 | + ) { |
|
| 4585 | + if (!$trouver_table) { |
|
| 4586 | + $trouver_table = charger_fonction('trouver_table', 'base'); |
|
| 4587 | + } |
|
| 4588 | + $desc = $trouver_table(table_objet_sql($type_objet)); |
|
| 4589 | + if (!$desc) { |
|
| 4590 | + return $objets[$type_objet] = false; |
|
| 4591 | + } |
|
| 4592 | + |
|
| 4593 | + // Si on demande le titre, on le gere en interne |
|
| 4594 | + $champ_titre = ""; |
|
| 4595 | + if ($demande_titre) { |
|
| 4596 | + // si pas de titre declare mais champ titre, il sera peuple par le select * |
|
| 4597 | + $champ_titre = (!empty($desc['titre'])) ? ', ' . $desc['titre'] : ''; |
|
| 4598 | + } |
|
| 4599 | + include_spip('base/abstract_sql'); |
|
| 4600 | + include_spip('base/connect_sql'); |
|
| 4601 | + $objets[$type_objet][$id_objet] = sql_fetsel( |
|
| 4602 | + '*' . $champ_titre, |
|
| 4603 | + $desc['table_sql'], |
|
| 4604 | + id_table_objet($type_objet) . ' = ' . intval($id_objet) |
|
| 4605 | + ); |
|
| 4606 | + |
|
| 4607 | + // Toujours noter la longueur d'introduction, même si pas demandé cette fois-ci |
|
| 4608 | + $objets[$type_objet]['introduction_longueur'] = $desc['introduction_longueur'] ?? null; |
|
| 4609 | + } |
|
| 4610 | + |
|
| 4611 | + // Pour les fonction generer_xxx, si on demande l'introduction, |
|
| 4612 | + // ajouter la longueur au début des params supplémentaires |
|
| 4613 | + if ($demande_introduction) { |
|
| 4614 | + $introduction_longueur = $objets[$type_objet]['introduction_longueur']; |
|
| 4615 | + array_unshift($params, $introduction_longueur); |
|
| 4616 | + } |
|
| 4617 | + |
|
| 4618 | + // Si la fonction generer_TRUC_TYPE existe, on l'utilise pour formater $info_generee |
|
| 4619 | + if ($generer = charger_fonction("generer_${info}_${type_objet}", '', true)) { |
|
| 4620 | + $info_generee = $generer($id_objet, $objets[$type_objet][$id_objet], ...$params); |
|
| 4621 | + } // Si la fonction generer_TRUC_entite existe, on l'utilise pour formater $info_generee |
|
| 4622 | + else { |
|
| 4623 | + if ($generer = charger_fonction("generer_${info}_entite", '', true)) { |
|
| 4624 | + $info_generee = $generer($id_objet, $type_objet, $objets[$type_objet][$id_objet], ...$params); |
|
| 4625 | + } // Sinon on prend directement le champ SQL tel quel |
|
| 4626 | + else { |
|
| 4627 | + $info_generee = (isset($objets[$type_objet][$id_objet][$info]) ? $objets[$type_objet][$id_objet][$info] : ''); |
|
| 4628 | + } |
|
| 4629 | + } |
|
| 4630 | + |
|
| 4631 | + // On va ensuite appliquer les traitements automatiques si besoin |
|
| 4632 | + if (!$etoile) { |
|
| 4633 | + // FIXME: on fournit un ENV minimum avec id et type et connect='' |
|
| 4634 | + // mais ce fonctionnement est a ameliorer ! |
|
| 4635 | + $info_generee = appliquer_traitement_champ($info_generee, $info, table_objet($type_objet), |
|
| 4636 | + array('id_objet' => $id_objet, 'objet' => $type_objet, '')); |
|
| 4637 | + } |
|
| 4638 | + |
|
| 4639 | + return $info_generee; |
|
| 4640 | 4640 | } |
| 4641 | 4641 | |
| 4642 | 4642 | /** |
@@ -4669,36 +4669,36 @@ discard block |
||
| 4669 | 4669 | */ |
| 4670 | 4670 | function generer_introduction_entite($id_objet, $type_objet, $ligne_sql, $introduction_longueur = null, $longueur_ou_suite = null, $suite = null, $connect = '') { |
| 4671 | 4671 | |
| 4672 | - $descriptif = $ligne_sql['descriptif'] ?? ''; |
|
| 4673 | - $texte = $ligne_sql['texte'] ?? ''; |
|
| 4674 | - // En absence de descriptif, on se rabat sur chapo + texte |
|
| 4675 | - if (isset($ligne_sql['chapo'])) { |
|
| 4676 | - $chapo = $ligne_sql['chapo']; |
|
| 4677 | - $texte = strlen($descriptif) ? |
|
| 4678 | - '' : |
|
| 4679 | - "$chapo \n\n $texte"; |
|
| 4680 | - } |
|
| 4672 | + $descriptif = $ligne_sql['descriptif'] ?? ''; |
|
| 4673 | + $texte = $ligne_sql['texte'] ?? ''; |
|
| 4674 | + // En absence de descriptif, on se rabat sur chapo + texte |
|
| 4675 | + if (isset($ligne_sql['chapo'])) { |
|
| 4676 | + $chapo = $ligne_sql['chapo']; |
|
| 4677 | + $texte = strlen($descriptif) ? |
|
| 4678 | + '' : |
|
| 4679 | + "$chapo \n\n $texte"; |
|
| 4680 | + } |
|
| 4681 | 4681 | |
| 4682 | - // Longueur en paramètre, sinon celle renseignée dans la description de l'objet, sinon valeur en dur |
|
| 4683 | - if (!intval($longueur_ou_suite)) { |
|
| 4684 | - $longueur = intval($introduction_longueur ?: 600); |
|
| 4685 | - } else { |
|
| 4686 | - $longueur = intval($longueur_ou_suite); |
|
| 4687 | - } |
|
| 4682 | + // Longueur en paramètre, sinon celle renseignée dans la description de l'objet, sinon valeur en dur |
|
| 4683 | + if (!intval($longueur_ou_suite)) { |
|
| 4684 | + $longueur = intval($introduction_longueur ?: 600); |
|
| 4685 | + } else { |
|
| 4686 | + $longueur = intval($longueur_ou_suite); |
|
| 4687 | + } |
|
| 4688 | 4688 | |
| 4689 | - // On peut optionnellement passer la suite en 1er paramètre de la balise |
|
| 4690 | - // Ex : #INTRODUCTION{...} |
|
| 4691 | - if ( |
|
| 4692 | - is_null($suite) |
|
| 4693 | - and !intval($longueur_ou_suite) |
|
| 4694 | - ) { |
|
| 4695 | - $suite = $longueur_ou_suite; |
|
| 4696 | - } |
|
| 4689 | + // On peut optionnellement passer la suite en 1er paramètre de la balise |
|
| 4690 | + // Ex : #INTRODUCTION{...} |
|
| 4691 | + if ( |
|
| 4692 | + is_null($suite) |
|
| 4693 | + and !intval($longueur_ou_suite) |
|
| 4694 | + ) { |
|
| 4695 | + $suite = $longueur_ou_suite; |
|
| 4696 | + } |
|
| 4697 | 4697 | |
| 4698 | - $f = chercher_filtre('introduction'); |
|
| 4699 | - $introduction = $f($descriptif, $texte, $longueur, $connect, $suite); |
|
| 4698 | + $f = chercher_filtre('introduction'); |
|
| 4699 | + $introduction = $f($descriptif, $texte, $longueur, $connect, $suite); |
|
| 4700 | 4700 | |
| 4701 | - return $introduction; |
|
| 4701 | + return $introduction; |
|
| 4702 | 4702 | } |
| 4703 | 4703 | |
| 4704 | 4704 | /** |
@@ -4712,44 +4712,44 @@ discard block |
||
| 4712 | 4712 | * @return string |
| 4713 | 4713 | */ |
| 4714 | 4714 | function appliquer_traitement_champ($texte, $champ, $table_objet = '', $env = array(), $connect = '') { |
| 4715 | - if (!$champ) { |
|
| 4716 | - return $texte; |
|
| 4717 | - } |
|
| 4715 | + if (!$champ) { |
|
| 4716 | + return $texte; |
|
| 4717 | + } |
|
| 4718 | 4718 | |
| 4719 | - // On charge les définitions des traitements (inc/texte et fichiers de fonctions) |
|
| 4720 | - // car il ne faut pas partir du principe que c'est déjà chargé (form ajax, etc) |
|
| 4721 | - include_fichiers_fonctions(); |
|
| 4719 | + // On charge les définitions des traitements (inc/texte et fichiers de fonctions) |
|
| 4720 | + // car il ne faut pas partir du principe que c'est déjà chargé (form ajax, etc) |
|
| 4721 | + include_fichiers_fonctions(); |
|
| 4722 | 4722 | |
| 4723 | - $champ = strtoupper($champ); |
|
| 4724 | - $traitements = isset($GLOBALS['table_des_traitements'][$champ]) ? $GLOBALS['table_des_traitements'][$champ] : false; |
|
| 4725 | - if (!$traitements or !is_array($traitements)) { |
|
| 4726 | - return $texte; |
|
| 4727 | - } |
|
| 4723 | + $champ = strtoupper($champ); |
|
| 4724 | + $traitements = isset($GLOBALS['table_des_traitements'][$champ]) ? $GLOBALS['table_des_traitements'][$champ] : false; |
|
| 4725 | + if (!$traitements or !is_array($traitements)) { |
|
| 4726 | + return $texte; |
|
| 4727 | + } |
|
| 4728 | 4728 | |
| 4729 | - $traitement = ''; |
|
| 4730 | - if ($table_objet and (!isset($traitements[0]) or count($traitements) > 1)) { |
|
| 4731 | - // necessaire pour prendre en charge les vieux appels avec un table_objet_sql en 3e arg |
|
| 4732 | - $table_objet = table_objet($table_objet); |
|
| 4733 | - if (isset($traitements[$table_objet])) { |
|
| 4734 | - $traitement = $traitements[$table_objet]; |
|
| 4735 | - } |
|
| 4736 | - } |
|
| 4737 | - if (!$traitement and isset($traitements[0])) { |
|
| 4738 | - $traitement = $traitements[0]; |
|
| 4739 | - } |
|
| 4740 | - // (sinon prendre le premier de la liste par defaut ?) |
|
| 4729 | + $traitement = ''; |
|
| 4730 | + if ($table_objet and (!isset($traitements[0]) or count($traitements) > 1)) { |
|
| 4731 | + // necessaire pour prendre en charge les vieux appels avec un table_objet_sql en 3e arg |
|
| 4732 | + $table_objet = table_objet($table_objet); |
|
| 4733 | + if (isset($traitements[$table_objet])) { |
|
| 4734 | + $traitement = $traitements[$table_objet]; |
|
| 4735 | + } |
|
| 4736 | + } |
|
| 4737 | + if (!$traitement and isset($traitements[0])) { |
|
| 4738 | + $traitement = $traitements[0]; |
|
| 4739 | + } |
|
| 4740 | + // (sinon prendre le premier de la liste par defaut ?) |
|
| 4741 | 4741 | |
| 4742 | - if (!$traitement) { |
|
| 4743 | - return $texte; |
|
| 4744 | - } |
|
| 4742 | + if (!$traitement) { |
|
| 4743 | + return $texte; |
|
| 4744 | + } |
|
| 4745 | 4745 | |
| 4746 | - $traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement); |
|
| 4746 | + $traitement = str_replace('%s', "'" . texte_script($texte) . "'", $traitement); |
|
| 4747 | 4747 | |
| 4748 | - // Fournir $connect et $Pile[0] au traitement si besoin |
|
| 4749 | - $Pile = array(0 => $env); |
|
| 4750 | - eval("\$texte = $traitement;"); |
|
| 4748 | + // Fournir $connect et $Pile[0] au traitement si besoin |
|
| 4749 | + $Pile = array(0 => $env); |
|
| 4750 | + eval("\$texte = $traitement;"); |
|
| 4751 | 4751 | |
| 4752 | - return $texte; |
|
| 4752 | + return $texte; |
|
| 4753 | 4753 | } |
| 4754 | 4754 | |
| 4755 | 4755 | |
@@ -4763,21 +4763,21 @@ discard block |
||
| 4763 | 4763 | * @return string |
| 4764 | 4764 | */ |
| 4765 | 4765 | function generer_lien_entite($id_objet, $objet, $longueur = 80, $connect = null) { |
| 4766 | - include_spip('inc/liens'); |
|
| 4767 | - $titre = traiter_raccourci_titre($id_objet, $objet, $connect); |
|
| 4768 | - // lorsque l'objet n'est plus declare (plugin desactive par exemple) |
|
| 4769 | - // le raccourcis n'est plus valide |
|
| 4770 | - $titre = isset($titre['titre']) ? typo($titre['titre']) : ''; |
|
| 4771 | - // on essaye avec generer_info_entite ? |
|
| 4772 | - if (!strlen($titre) and !$connect) { |
|
| 4773 | - $titre = generer_info_entite($id_objet, $objet, 'titre'); |
|
| 4774 | - } |
|
| 4775 | - if (!strlen($titre)) { |
|
| 4776 | - $titre = _T('info_sans_titre'); |
|
| 4777 | - } |
|
| 4778 | - $url = generer_url_entite($id_objet, $objet, '', '', $connect); |
|
| 4766 | + include_spip('inc/liens'); |
|
| 4767 | + $titre = traiter_raccourci_titre($id_objet, $objet, $connect); |
|
| 4768 | + // lorsque l'objet n'est plus declare (plugin desactive par exemple) |
|
| 4769 | + // le raccourcis n'est plus valide |
|
| 4770 | + $titre = isset($titre['titre']) ? typo($titre['titre']) : ''; |
|
| 4771 | + // on essaye avec generer_info_entite ? |
|
| 4772 | + if (!strlen($titre) and !$connect) { |
|
| 4773 | + $titre = generer_info_entite($id_objet, $objet, 'titre'); |
|
| 4774 | + } |
|
| 4775 | + if (!strlen($titre)) { |
|
| 4776 | + $titre = _T('info_sans_titre'); |
|
| 4777 | + } |
|
| 4778 | + $url = generer_url_entite($id_objet, $objet, '', '', $connect); |
|
| 4779 | 4779 | |
| 4780 | - return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . "</a>"; |
|
| 4780 | + return "<a href='$url' class='$objet'>" . couper($titre, $longueur) . "</a>"; |
|
| 4781 | 4781 | } |
| 4782 | 4782 | |
| 4783 | 4783 | |
@@ -4794,15 +4794,15 @@ discard block |
||
| 4794 | 4794 | * @return string |
| 4795 | 4795 | */ |
| 4796 | 4796 | function wrap($texte, $wrap) { |
| 4797 | - $balises = extraire_balises($wrap); |
|
| 4798 | - if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) { |
|
| 4799 | - $texte = $wrap . $texte; |
|
| 4800 | - $regs = array_reverse($regs[1]); |
|
| 4801 | - $wrap = "</" . implode("></", $regs) . ">"; |
|
| 4802 | - $texte = $texte . $wrap; |
|
| 4803 | - } |
|
| 4797 | + $balises = extraire_balises($wrap); |
|
| 4798 | + if (preg_match_all(",<([a-z]\w*)\b[^>]*>,UimsS", $wrap, $regs, PREG_PATTERN_ORDER)) { |
|
| 4799 | + $texte = $wrap . $texte; |
|
| 4800 | + $regs = array_reverse($regs[1]); |
|
| 4801 | + $wrap = "</" . implode("></", $regs) . ">"; |
|
| 4802 | + $texte = $texte . $wrap; |
|
| 4803 | + } |
|
| 4804 | 4804 | |
| 4805 | - return $texte; |
|
| 4805 | + return $texte; |
|
| 4806 | 4806 | } |
| 4807 | 4807 | |
| 4808 | 4808 | |
@@ -4822,43 +4822,43 @@ discard block |
||
| 4822 | 4822 | * @return array|mixed|string |
| 4823 | 4823 | */ |
| 4824 | 4824 | function filtre_print_dist($u, $join = "<br />", $indent = 0) { |
| 4825 | - if (is_string($u)) { |
|
| 4826 | - $u = typo($u); |
|
| 4825 | + if (is_string($u)) { |
|
| 4826 | + $u = typo($u); |
|
| 4827 | 4827 | |
| 4828 | - return $u; |
|
| 4829 | - } |
|
| 4828 | + return $u; |
|
| 4829 | + } |
|
| 4830 | 4830 | |
| 4831 | - // caster $u en array si besoin |
|
| 4832 | - if (is_object($u)) { |
|
| 4833 | - $u = (array)$u; |
|
| 4834 | - } |
|
| 4831 | + // caster $u en array si besoin |
|
| 4832 | + if (is_object($u)) { |
|
| 4833 | + $u = (array)$u; |
|
| 4834 | + } |
|
| 4835 | 4835 | |
| 4836 | - if (is_array($u)) { |
|
| 4837 | - $out = ""; |
|
| 4838 | - // toutes les cles sont numeriques ? |
|
| 4839 | - // et aucun enfant n'est un tableau |
|
| 4840 | - // liste simple separee par des virgules |
|
| 4841 | - $numeric_keys = array_map('is_numeric', array_keys($u)); |
|
| 4842 | - $array_values = array_map('is_array', $u); |
|
| 4843 | - $object_values = array_map('is_object', $u); |
|
| 4844 | - if (array_sum($numeric_keys) == count($numeric_keys) |
|
| 4845 | - and !array_sum($array_values) |
|
| 4846 | - and !array_sum($object_values) |
|
| 4847 | - ) { |
|
| 4848 | - return join(", ", array_map('filtre_print_dist', $u)); |
|
| 4849 | - } |
|
| 4836 | + if (is_array($u)) { |
|
| 4837 | + $out = ""; |
|
| 4838 | + // toutes les cles sont numeriques ? |
|
| 4839 | + // et aucun enfant n'est un tableau |
|
| 4840 | + // liste simple separee par des virgules |
|
| 4841 | + $numeric_keys = array_map('is_numeric', array_keys($u)); |
|
| 4842 | + $array_values = array_map('is_array', $u); |
|
| 4843 | + $object_values = array_map('is_object', $u); |
|
| 4844 | + if (array_sum($numeric_keys) == count($numeric_keys) |
|
| 4845 | + and !array_sum($array_values) |
|
| 4846 | + and !array_sum($object_values) |
|
| 4847 | + ) { |
|
| 4848 | + return join(", ", array_map('filtre_print_dist', $u)); |
|
| 4849 | + } |
|
| 4850 | 4850 | |
| 4851 | - // sinon on passe a la ligne et on indente |
|
| 4852 | - $i_str = str_pad("", $indent, "Â "); |
|
| 4853 | - foreach ($u as $k => $v) { |
|
| 4854 | - $out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2); |
|
| 4855 | - } |
|
| 4851 | + // sinon on passe a la ligne et on indente |
|
| 4852 | + $i_str = str_pad("", $indent, "Â "); |
|
| 4853 | + foreach ($u as $k => $v) { |
|
| 4854 | + $out .= $join . $i_str . "$k: " . filtre_print_dist($v, $join, $indent + 2); |
|
| 4855 | + } |
|
| 4856 | 4856 | |
| 4857 | - return $out; |
|
| 4858 | - } |
|
| 4857 | + return $out; |
|
| 4858 | + } |
|
| 4859 | 4859 | |
| 4860 | - // on sait pas quoi faire... |
|
| 4861 | - return $u; |
|
| 4860 | + // on sait pas quoi faire... |
|
| 4861 | + return $u; |
|
| 4862 | 4862 | } |
| 4863 | 4863 | |
| 4864 | 4864 | |
@@ -4871,10 +4871,10 @@ discard block |
||
| 4871 | 4871 | * @return string|array |
| 4872 | 4872 | */ |
| 4873 | 4873 | function objet_info($objet, $info) { |
| 4874 | - $table = table_objet_sql($objet); |
|
| 4875 | - $infos = lister_tables_objets_sql($table); |
|
| 4874 | + $table = table_objet_sql($objet); |
|
| 4875 | + $infos = lister_tables_objets_sql($table); |
|
| 4876 | 4876 | |
| 4877 | - return (isset($infos[$info]) ? $infos[$info] : ''); |
|
| 4877 | + return (isset($infos[$info]) ? $infos[$info] : ''); |
|
| 4878 | 4878 | } |
| 4879 | 4879 | |
| 4880 | 4880 | /** |
@@ -4889,11 +4889,11 @@ discard block |
||
| 4889 | 4889 | * Texte traduit du comptage, tel que '3 articles' |
| 4890 | 4890 | */ |
| 4891 | 4891 | function objet_afficher_nb($nb, $objet) { |
| 4892 | - if (!$nb) { |
|
| 4893 | - return _T(objet_info($objet, 'info_aucun_objet')); |
|
| 4894 | - } else { |
|
| 4895 | - return _T(objet_info($objet, $nb == 1 ? 'info_1_objet' : 'info_nb_objets'), array('nb' => $nb)); |
|
| 4896 | - } |
|
| 4892 | + if (!$nb) { |
|
| 4893 | + return _T(objet_info($objet, 'info_aucun_objet')); |
|
| 4894 | + } else { |
|
| 4895 | + return _T(objet_info($objet, $nb == 1 ? 'info_1_objet' : 'info_nb_objets'), array('nb' => $nb)); |
|
| 4896 | + } |
|
| 4897 | 4897 | } |
| 4898 | 4898 | |
| 4899 | 4899 | /** |
@@ -4905,11 +4905,11 @@ discard block |
||
| 4905 | 4905 | * @return string |
| 4906 | 4906 | */ |
| 4907 | 4907 | function objet_icone($objet, $taille = 24, $class='') { |
| 4908 | - $icone = objet_info($objet, 'icone_objet') . "-" . $taille . ".png"; |
|
| 4909 | - $icone = chemin_image($icone); |
|
| 4910 | - $balise_img = charger_filtre('balise_img'); |
|
| 4908 | + $icone = objet_info($objet, 'icone_objet') . "-" . $taille . ".png"; |
|
| 4909 | + $icone = chemin_image($icone); |
|
| 4910 | + $balise_img = charger_filtre('balise_img'); |
|
| 4911 | 4911 | |
| 4912 | - return $icone ? $balise_img($icone, _T(objet_info($objet, 'texte_objet')), $class, $taille) : ''; |
|
| 4912 | + return $icone ? $balise_img($icone, _T(objet_info($objet, 'texte_objet')), $class, $taille) : ''; |
|
| 4913 | 4913 | } |
| 4914 | 4914 | |
| 4915 | 4915 | /** |
@@ -4930,12 +4930,12 @@ discard block |
||
| 4930 | 4930 | * @return string |
| 4931 | 4931 | */ |
| 4932 | 4932 | function objet_T($objet, $chaine, $args = array(), $options = array()){ |
| 4933 | - $chaine = explode(':',$chaine); |
|
| 4934 | - if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, array('force'=>false)))) { |
|
| 4935 | - return $t; |
|
| 4936 | - } |
|
| 4937 | - $chaine = implode(':',$chaine); |
|
| 4938 | - return _T($chaine, $args, $options); |
|
| 4933 | + $chaine = explode(':',$chaine); |
|
| 4934 | + if ($t = _T($objet . ':' . end($chaine), $args, array_merge($options, array('force'=>false)))) { |
|
| 4935 | + return $t; |
|
| 4936 | + } |
|
| 4937 | + $chaine = implode(':',$chaine); |
|
| 4938 | + return _T($chaine, $args, $options); |
|
| 4939 | 4939 | } |
| 4940 | 4940 | |
| 4941 | 4941 | /** |
@@ -4949,17 +4949,17 @@ discard block |
||
| 4949 | 4949 | * @return string Code HTML |
| 4950 | 4950 | */ |
| 4951 | 4951 | function insert_head_css_conditionnel($flux) { |
| 4952 | - if (strpos($flux, '<!-- insert_head_css -->') === false |
|
| 4953 | - and $p = strpos($flux, '<!-- insert_head -->') |
|
| 4954 | - ) { |
|
| 4955 | - // plutot avant le premier js externe (jquery) pour etre non bloquant |
|
| 4956 | - if ($p1 = stripos($flux, '<script src=') and $p1 < $p) { |
|
| 4957 | - $p = $p1; |
|
| 4958 | - } |
|
| 4959 | - $flux = substr_replace($flux, pipeline('insert_head_css', '<!-- insert_head_css -->'), $p, 0); |
|
| 4960 | - } |
|
| 4952 | + if (strpos($flux, '<!-- insert_head_css -->') === false |
|
| 4953 | + and $p = strpos($flux, '<!-- insert_head -->') |
|
| 4954 | + ) { |
|
| 4955 | + // plutot avant le premier js externe (jquery) pour etre non bloquant |
|
| 4956 | + if ($p1 = stripos($flux, '<script src=') and $p1 < $p) { |
|
| 4957 | + $p = $p1; |
|
| 4958 | + } |
|
| 4959 | + $flux = substr_replace($flux, pipeline('insert_head_css', '<!-- insert_head_css -->'), $p, 0); |
|
| 4960 | + } |
|
| 4961 | 4961 | |
| 4962 | - return $flux; |
|
| 4962 | + return $flux; |
|
| 4963 | 4963 | } |
| 4964 | 4964 | |
| 4965 | 4965 | /** |
@@ -4982,69 +4982,69 @@ discard block |
||
| 4982 | 4982 | * @return string |
| 4983 | 4983 | */ |
| 4984 | 4984 | function produire_fond_statique($fond, $contexte = array(), $options = array(), $connect = '') { |
| 4985 | - if (isset($contexte['format'])) { |
|
| 4986 | - $extension = $contexte['format']; |
|
| 4987 | - unset($contexte['format']); |
|
| 4988 | - } else { |
|
| 4989 | - $extension = 'html'; |
|
| 4990 | - if (preg_match(',[.](css|js|json|xml|svg)$,', $fond, $m)) { |
|
| 4991 | - $extension = $m[1]; |
|
| 4992 | - } |
|
| 4993 | - } |
|
| 4994 | - // recuperer le contenu produit par le squelette |
|
| 4995 | - $options['raw'] = true; |
|
| 4996 | - $cache = recuperer_fond($fond, $contexte, $options, $connect); |
|
| 4997 | - |
|
| 4998 | - // calculer le nom de la css |
|
| 4999 | - $dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension); |
|
| 5000 | - $nom_safe = preg_replace(",\W,", '_', str_replace('.', '_', $fond)); |
|
| 5001 | - $contexte_implicite = calculer_contexte_implicite(); |
|
| 5002 | - |
|
| 5003 | - // par defaut on hash selon les contextes qui sont a priori moins variables |
|
| 5004 | - // mais on peut hasher selon le contenu a la demande, si plusieurs contextes produisent un meme contenu |
|
| 5005 | - // reduit la variabilite du nom et donc le nombre de css concatenees possibles in fine |
|
| 5006 | - if (isset($options['hash_on_content']) and $options['hash_on_content']) { |
|
| 5007 | - $hash = md5($contexte_implicite['host'] . '::'. $cache); |
|
| 5008 | - } |
|
| 5009 | - else { |
|
| 5010 | - unset($contexte_implicite['notes']); // pas pertinent pour signaler un changeemnt de contenu pour des css/js |
|
| 5011 | - ksort($contexte); |
|
| 5012 | - $hash = md5($fond . json_encode($contexte_implicite) . json_encode($contexte) . $connect); |
|
| 5013 | - } |
|
| 5014 | - $filename = $dir_var . $extension . "dyn-$nom_safe-" . substr($hash, 0, 8) . ".$extension"; |
|
| 5015 | - |
|
| 5016 | - // mettre a jour le fichier si il n'existe pas |
|
| 5017 | - // ou trop ancien |
|
| 5018 | - // le dernier fichier produit est toujours suffixe par .last |
|
| 5019 | - // et recopie sur le fichier cible uniquement si il change |
|
| 5020 | - if (!file_exists($filename) |
|
| 5021 | - or !file_exists($filename . ".last") |
|
| 5022 | - or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . ".last") < $cache['lastmodified']) |
|
| 5023 | - or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul') |
|
| 5024 | - ) { |
|
| 5025 | - $contenu = $cache['texte']; |
|
| 5026 | - // passer les urls en absolu si c'est une css |
|
| 5027 | - if ($extension == "css") { |
|
| 5028 | - $contenu = urls_absolues_css($contenu, |
|
| 5029 | - test_espace_prive() ? generer_url_ecrire('accueil') : generer_url_public($fond)); |
|
| 5030 | - } |
|
| 5031 | - |
|
| 5032 | - $comment = ''; |
|
| 5033 | - // ne pas insérer de commentaire sur certains formats |
|
| 5034 | - if (!in_array($extension, ['json', 'xml', 'svg'])) { |
|
| 5035 | - $comment = "/* #PRODUIRE{fond=$fond"; |
|
| 5036 | - foreach ($contexte as $k => $v) { |
|
| 5037 | - $comment .= ",$k=$v"; |
|
| 5038 | - } |
|
| 5039 | - // pas de date dans le commentaire car sinon ca invalide le md5 et force la maj |
|
| 5040 | - // mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non |
|
| 5041 | - $comment .= "}\n md5:" . md5($contenu) . " */\n"; |
|
| 5042 | - } |
|
| 5043 | - // et ecrire le fichier si il change |
|
| 5044 | - ecrire_fichier_calcule_si_modifie($filename, $comment . $contenu, false, true); |
|
| 5045 | - } |
|
| 5046 | - |
|
| 5047 | - return timestamp($filename); |
|
| 4985 | + if (isset($contexte['format'])) { |
|
| 4986 | + $extension = $contexte['format']; |
|
| 4987 | + unset($contexte['format']); |
|
| 4988 | + } else { |
|
| 4989 | + $extension = 'html'; |
|
| 4990 | + if (preg_match(',[.](css|js|json|xml|svg)$,', $fond, $m)) { |
|
| 4991 | + $extension = $m[1]; |
|
| 4992 | + } |
|
| 4993 | + } |
|
| 4994 | + // recuperer le contenu produit par le squelette |
|
| 4995 | + $options['raw'] = true; |
|
| 4996 | + $cache = recuperer_fond($fond, $contexte, $options, $connect); |
|
| 4997 | + |
|
| 4998 | + // calculer le nom de la css |
|
| 4999 | + $dir_var = sous_repertoire(_DIR_VAR, 'cache-' . $extension); |
|
| 5000 | + $nom_safe = preg_replace(",\W,", '_', str_replace('.', '_', $fond)); |
|
| 5001 | + $contexte_implicite = calculer_contexte_implicite(); |
|
| 5002 | + |
|
| 5003 | + // par defaut on hash selon les contextes qui sont a priori moins variables |
|
| 5004 | + // mais on peut hasher selon le contenu a la demande, si plusieurs contextes produisent un meme contenu |
|
| 5005 | + // reduit la variabilite du nom et donc le nombre de css concatenees possibles in fine |
|
| 5006 | + if (isset($options['hash_on_content']) and $options['hash_on_content']) { |
|
| 5007 | + $hash = md5($contexte_implicite['host'] . '::'. $cache); |
|
| 5008 | + } |
|
| 5009 | + else { |
|
| 5010 | + unset($contexte_implicite['notes']); // pas pertinent pour signaler un changeemnt de contenu pour des css/js |
|
| 5011 | + ksort($contexte); |
|
| 5012 | + $hash = md5($fond . json_encode($contexte_implicite) . json_encode($contexte) . $connect); |
|
| 5013 | + } |
|
| 5014 | + $filename = $dir_var . $extension . "dyn-$nom_safe-" . substr($hash, 0, 8) . ".$extension"; |
|
| 5015 | + |
|
| 5016 | + // mettre a jour le fichier si il n'existe pas |
|
| 5017 | + // ou trop ancien |
|
| 5018 | + // le dernier fichier produit est toujours suffixe par .last |
|
| 5019 | + // et recopie sur le fichier cible uniquement si il change |
|
| 5020 | + if (!file_exists($filename) |
|
| 5021 | + or !file_exists($filename . ".last") |
|
| 5022 | + or (isset($cache['lastmodified']) and $cache['lastmodified'] and filemtime($filename . ".last") < $cache['lastmodified']) |
|
| 5023 | + or (defined('_VAR_MODE') and _VAR_MODE == 'recalcul') |
|
| 5024 | + ) { |
|
| 5025 | + $contenu = $cache['texte']; |
|
| 5026 | + // passer les urls en absolu si c'est une css |
|
| 5027 | + if ($extension == "css") { |
|
| 5028 | + $contenu = urls_absolues_css($contenu, |
|
| 5029 | + test_espace_prive() ? generer_url_ecrire('accueil') : generer_url_public($fond)); |
|
| 5030 | + } |
|
| 5031 | + |
|
| 5032 | + $comment = ''; |
|
| 5033 | + // ne pas insérer de commentaire sur certains formats |
|
| 5034 | + if (!in_array($extension, ['json', 'xml', 'svg'])) { |
|
| 5035 | + $comment = "/* #PRODUIRE{fond=$fond"; |
|
| 5036 | + foreach ($contexte as $k => $v) { |
|
| 5037 | + $comment .= ",$k=$v"; |
|
| 5038 | + } |
|
| 5039 | + // pas de date dans le commentaire car sinon ca invalide le md5 et force la maj |
|
| 5040 | + // mais on peut mettre un md5 du contenu, ce qui donne un aperu rapide si la feuille a change ou non |
|
| 5041 | + $comment .= "}\n md5:" . md5($contenu) . " */\n"; |
|
| 5042 | + } |
|
| 5043 | + // et ecrire le fichier si il change |
|
| 5044 | + ecrire_fichier_calcule_si_modifie($filename, $comment . $contenu, false, true); |
|
| 5045 | + } |
|
| 5046 | + |
|
| 5047 | + return timestamp($filename); |
|
| 5048 | 5048 | } |
| 5049 | 5049 | |
| 5050 | 5050 | /** |
@@ -5057,14 +5057,14 @@ discard block |
||
| 5057 | 5057 | * $fichier auquel on a ajouté le timestamp |
| 5058 | 5058 | */ |
| 5059 | 5059 | function timestamp($fichier) { |
| 5060 | - if (!$fichier |
|
| 5061 | - or !file_exists($fichier) |
|
| 5062 | - or !$m = filemtime($fichier) |
|
| 5063 | - ) { |
|
| 5064 | - return $fichier; |
|
| 5065 | - } |
|
| 5060 | + if (!$fichier |
|
| 5061 | + or !file_exists($fichier) |
|
| 5062 | + or !$m = filemtime($fichier) |
|
| 5063 | + ) { |
|
| 5064 | + return $fichier; |
|
| 5065 | + } |
|
| 5066 | 5066 | |
| 5067 | - return "$fichier?$m"; |
|
| 5067 | + return "$fichier?$m"; |
|
| 5068 | 5068 | } |
| 5069 | 5069 | |
| 5070 | 5070 | /** |
@@ -5074,11 +5074,11 @@ discard block |
||
| 5074 | 5074 | * @return string |
| 5075 | 5075 | */ |
| 5076 | 5076 | function supprimer_timestamp($url) { |
| 5077 | - if (strpos($url, "?") === false) { |
|
| 5078 | - return $url; |
|
| 5079 | - } |
|
| 5077 | + if (strpos($url, "?") === false) { |
|
| 5078 | + return $url; |
|
| 5079 | + } |
|
| 5080 | 5080 | |
| 5081 | - return preg_replace(",\?[[:digit:]]+$,", "", $url); |
|
| 5081 | + return preg_replace(",\?[[:digit:]]+$,", "", $url); |
|
| 5082 | 5082 | } |
| 5083 | 5083 | |
| 5084 | 5084 | /** |
@@ -5093,9 +5093,9 @@ discard block |
||
| 5093 | 5093 | * @return string |
| 5094 | 5094 | */ |
| 5095 | 5095 | function filtre_nettoyer_titre_email_dist($titre) { |
| 5096 | - include_spip('inc/envoyer_mail'); |
|
| 5096 | + include_spip('inc/envoyer_mail'); |
|
| 5097 | 5097 | |
| 5098 | - return nettoyer_titre_email($titre); |
|
| 5098 | + return nettoyer_titre_email($titre); |
|
| 5099 | 5099 | } |
| 5100 | 5100 | |
| 5101 | 5101 | /** |
@@ -5117,19 +5117,19 @@ discard block |
||
| 5117 | 5117 | * @return string |
| 5118 | 5118 | */ |
| 5119 | 5119 | function filtre_chercher_rubrique_dist( |
| 5120 | - $titre, |
|
| 5121 | - $id_objet, |
|
| 5122 | - $id_parent, |
|
| 5123 | - $objet, |
|
| 5124 | - $id_secteur, |
|
| 5125 | - $restreint, |
|
| 5126 | - $actionable = false, |
|
| 5127 | - $retour_sans_cadre = false |
|
| 5120 | + $titre, |
|
| 5121 | + $id_objet, |
|
| 5122 | + $id_parent, |
|
| 5123 | + $objet, |
|
| 5124 | + $id_secteur, |
|
| 5125 | + $restreint, |
|
| 5126 | + $actionable = false, |
|
| 5127 | + $retour_sans_cadre = false |
|
| 5128 | 5128 | ) { |
| 5129 | - include_spip('inc/filtres_ecrire'); |
|
| 5129 | + include_spip('inc/filtres_ecrire'); |
|
| 5130 | 5130 | |
| 5131 | - return chercher_rubrique($titre, $id_objet, $id_parent, $objet, $id_secteur, $restreint, $actionable, |
|
| 5132 | - $retour_sans_cadre); |
|
| 5131 | + return chercher_rubrique($titre, $id_objet, $id_parent, $objet, $id_secteur, $restreint, $actionable, |
|
| 5132 | + $retour_sans_cadre); |
|
| 5133 | 5133 | } |
| 5134 | 5134 | |
| 5135 | 5135 | /** |
@@ -5158,56 +5158,56 @@ discard block |
||
| 5158 | 5158 | * Chaîne vide si l'accès est autorisé |
| 5159 | 5159 | */ |
| 5160 | 5160 | function sinon_interdire_acces($ok = false, $url = '', $statut = 0, $message = null) { |
| 5161 | - if ($ok) { |
|
| 5162 | - return ''; |
|
| 5163 | - } |
|
| 5164 | - |
|
| 5165 | - // Vider tous les tampons |
|
| 5166 | - $level = @ob_get_level(); |
|
| 5167 | - while ($level--) { |
|
| 5168 | - @ob_end_clean(); |
|
| 5169 | - } |
|
| 5170 | - |
|
| 5171 | - include_spip('inc/headers'); |
|
| 5172 | - |
|
| 5173 | - // S'il y a une URL, on redirige (si pas de statut, la fonction mettra 302 par défaut) |
|
| 5174 | - if ($url) { |
|
| 5175 | - redirige_par_entete($url, '', $statut); |
|
| 5176 | - } |
|
| 5177 | - |
|
| 5178 | - // ecriture simplifiee avec message en 3eme argument (= statut 403) |
|
| 5179 | - if (!is_numeric($statut) and is_null($message)) { |
|
| 5180 | - $message = $statut; |
|
| 5181 | - $statut = 0; |
|
| 5182 | - } |
|
| 5183 | - if (!$message) { |
|
| 5184 | - $message = ''; |
|
| 5185 | - } |
|
| 5186 | - $statut = intval($statut); |
|
| 5187 | - |
|
| 5188 | - // Si on est dans l'espace privé, on génère du 403 Forbidden par defaut ou du 404 |
|
| 5189 | - if (test_espace_prive()) { |
|
| 5190 | - if (!$statut or !in_array($statut, array(404, 403))) { |
|
| 5191 | - $statut = 403; |
|
| 5192 | - } |
|
| 5193 | - http_status(403); |
|
| 5194 | - $echec = charger_fonction('403', 'exec'); |
|
| 5195 | - $echec($message); |
|
| 5196 | - } else { |
|
| 5197 | - // Sinon dans l'espace public on redirige vers une 404 par défaut, car elle toujours présente normalement |
|
| 5198 | - if (!$statut) { |
|
| 5199 | - $statut = 404; |
|
| 5200 | - } |
|
| 5201 | - // Dans tous les cas on modifie l'entité avec ce qui est demandé |
|
| 5202 | - http_status($statut); |
|
| 5203 | - // Si le statut est une erreur et qu'il n'y a pas de redirection on va chercher le squelette du même nom |
|
| 5204 | - if ($statut >= 400) { |
|
| 5205 | - echo recuperer_fond("$statut", array('erreur' => $message)); |
|
| 5206 | - } |
|
| 5207 | - } |
|
| 5208 | - |
|
| 5209 | - |
|
| 5210 | - exit; |
|
| 5161 | + if ($ok) { |
|
| 5162 | + return ''; |
|
| 5163 | + } |
|
| 5164 | + |
|
| 5165 | + // Vider tous les tampons |
|
| 5166 | + $level = @ob_get_level(); |
|
| 5167 | + while ($level--) { |
|
| 5168 | + @ob_end_clean(); |
|
| 5169 | + } |
|
| 5170 | + |
|
| 5171 | + include_spip('inc/headers'); |
|
| 5172 | + |
|
| 5173 | + // S'il y a une URL, on redirige (si pas de statut, la fonction mettra 302 par défaut) |
|
| 5174 | + if ($url) { |
|
| 5175 | + redirige_par_entete($url, '', $statut); |
|
| 5176 | + } |
|
| 5177 | + |
|
| 5178 | + // ecriture simplifiee avec message en 3eme argument (= statut 403) |
|
| 5179 | + if (!is_numeric($statut) and is_null($message)) { |
|
| 5180 | + $message = $statut; |
|
| 5181 | + $statut = 0; |
|
| 5182 | + } |
|
| 5183 | + if (!$message) { |
|
| 5184 | + $message = ''; |
|
| 5185 | + } |
|
| 5186 | + $statut = intval($statut); |
|
| 5187 | + |
|
| 5188 | + // Si on est dans l'espace privé, on génère du 403 Forbidden par defaut ou du 404 |
|
| 5189 | + if (test_espace_prive()) { |
|
| 5190 | + if (!$statut or !in_array($statut, array(404, 403))) { |
|
| 5191 | + $statut = 403; |
|
| 5192 | + } |
|
| 5193 | + http_status(403); |
|
| 5194 | + $echec = charger_fonction('403', 'exec'); |
|
| 5195 | + $echec($message); |
|
| 5196 | + } else { |
|
| 5197 | + // Sinon dans l'espace public on redirige vers une 404 par défaut, car elle toujours présente normalement |
|
| 5198 | + if (!$statut) { |
|
| 5199 | + $statut = 404; |
|
| 5200 | + } |
|
| 5201 | + // Dans tous les cas on modifie l'entité avec ce qui est demandé |
|
| 5202 | + http_status($statut); |
|
| 5203 | + // Si le statut est une erreur et qu'il n'y a pas de redirection on va chercher le squelette du même nom |
|
| 5204 | + if ($statut >= 400) { |
|
| 5205 | + echo recuperer_fond("$statut", array('erreur' => $message)); |
|
| 5206 | + } |
|
| 5207 | + } |
|
| 5208 | + |
|
| 5209 | + |
|
| 5210 | + exit; |
|
| 5211 | 5211 | } |
| 5212 | 5212 | |
| 5213 | 5213 | /** |
@@ -5218,11 +5218,11 @@ discard block |
||
| 5218 | 5218 | * @return string |
| 5219 | 5219 | */ |
| 5220 | 5220 | function filtre_compacte_dist($source, $format = null) { |
| 5221 | - if (function_exists('compacte')) { |
|
| 5222 | - return compacte($source, $format); |
|
| 5223 | - } |
|
| 5221 | + if (function_exists('compacte')) { |
|
| 5222 | + return compacte($source, $format); |
|
| 5223 | + } |
|
| 5224 | 5224 | |
| 5225 | - return $source; |
|
| 5225 | + return $source; |
|
| 5226 | 5226 | } |
| 5227 | 5227 | |
| 5228 | 5228 | |
@@ -5234,31 +5234,31 @@ discard block |
||
| 5234 | 5234 | * @return string |
| 5235 | 5235 | */ |
| 5236 | 5236 | function spip_affiche_mot_de_passe_masque($passe, $afficher_partiellement = false, $portion_pourcent = null) { |
| 5237 | - $l = strlen($passe); |
|
| 5238 | - |
|
| 5239 | - if ($l<=8 or !$afficher_partiellement){ |
|
| 5240 | - if (!$l) { |
|
| 5241 | - return ''; // montrer qu'il y a pas de mot de passe si il y en a pas |
|
| 5242 | - } |
|
| 5243 | - return str_pad('',$afficher_partiellement ? $l : 16,'*'); |
|
| 5244 | - } |
|
| 5245 | - |
|
| 5246 | - if (is_null($portion_pourcent)) { |
|
| 5247 | - if (!defined('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT')) { |
|
| 5248 | - define('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT', 20); // 20% |
|
| 5249 | - } |
|
| 5250 | - $portion_pourcent = _SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT; |
|
| 5251 | - } |
|
| 5252 | - if ($portion_pourcent >= 100) { |
|
| 5253 | - return $passe; |
|
| 5254 | - } |
|
| 5255 | - $e = intval(ceil($l * $portion_pourcent / 100 / 2)); |
|
| 5256 | - $e = max($e, 0); |
|
| 5257 | - $mid = str_pad('',$l-2*$e,'*'); |
|
| 5258 | - if ($e>0 and strlen($mid)>8){ |
|
| 5259 | - $mid = '***...***'; |
|
| 5260 | - } |
|
| 5261 | - return substr($passe,0,$e) . $mid . ($e > 0 ? substr($passe,-$e) : ''); |
|
| 5237 | + $l = strlen($passe); |
|
| 5238 | + |
|
| 5239 | + if ($l<=8 or !$afficher_partiellement){ |
|
| 5240 | + if (!$l) { |
|
| 5241 | + return ''; // montrer qu'il y a pas de mot de passe si il y en a pas |
|
| 5242 | + } |
|
| 5243 | + return str_pad('',$afficher_partiellement ? $l : 16,'*'); |
|
| 5244 | + } |
|
| 5245 | + |
|
| 5246 | + if (is_null($portion_pourcent)) { |
|
| 5247 | + if (!defined('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT')) { |
|
| 5248 | + define('_SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT', 20); // 20% |
|
| 5249 | + } |
|
| 5250 | + $portion_pourcent = _SPIP_AFFICHE_MOT_DE_PASSE_MASQUE_PERCENT; |
|
| 5251 | + } |
|
| 5252 | + if ($portion_pourcent >= 100) { |
|
| 5253 | + return $passe; |
|
| 5254 | + } |
|
| 5255 | + $e = intval(ceil($l * $portion_pourcent / 100 / 2)); |
|
| 5256 | + $e = max($e, 0); |
|
| 5257 | + $mid = str_pad('',$l-2*$e,'*'); |
|
| 5258 | + if ($e>0 and strlen($mid)>8){ |
|
| 5259 | + $mid = '***...***'; |
|
| 5260 | + } |
|
| 5261 | + return substr($passe,0,$e) . $mid . ($e > 0 ? substr($passe,-$e) : ''); |
|
| 5262 | 5262 | } |
| 5263 | 5263 | |
| 5264 | 5264 | |
@@ -5279,64 +5279,64 @@ discard block |
||
| 5279 | 5279 | */ |
| 5280 | 5280 | function identifiant_slug($texte, $type = '', $options = array()) { |
| 5281 | 5281 | |
| 5282 | - $original = $texte; |
|
| 5283 | - $separateur = (isset($options['separateur'])?$options['separateur']:'_'); |
|
| 5284 | - $longueur_maxi = (isset($options['longueur_maxi'])?$options['longueur_maxi']:60); |
|
| 5285 | - $longueur_mini = (isset($options['longueur_mini'])?$options['longueur_mini']:0); |
|
| 5282 | + $original = $texte; |
|
| 5283 | + $separateur = (isset($options['separateur'])?$options['separateur']:'_'); |
|
| 5284 | + $longueur_maxi = (isset($options['longueur_maxi'])?$options['longueur_maxi']:60); |
|
| 5285 | + $longueur_mini = (isset($options['longueur_mini'])?$options['longueur_mini']:0); |
|
| 5286 | 5286 | |
| 5287 | - if (!function_exists('translitteration')) { |
|
| 5288 | - include_spip('inc/charsets'); |
|
| 5289 | - } |
|
| 5287 | + if (!function_exists('translitteration')) { |
|
| 5288 | + include_spip('inc/charsets'); |
|
| 5289 | + } |
|
| 5290 | 5290 | |
| 5291 | - // pas de balise html |
|
| 5292 | - if (strpos($texte, '<') !== false) { |
|
| 5293 | - $texte = strip_tags($texte); |
|
| 5294 | - } |
|
| 5295 | - if (strpos($texte, '&') !== false) { |
|
| 5296 | - $texte = unicode2charset($texte); |
|
| 5297 | - } |
|
| 5298 | - // On enlève les espaces indésirables |
|
| 5299 | - $texte = trim($texte); |
|
| 5291 | + // pas de balise html |
|
| 5292 | + if (strpos($texte, '<') !== false) { |
|
| 5293 | + $texte = strip_tags($texte); |
|
| 5294 | + } |
|
| 5295 | + if (strpos($texte, '&') !== false) { |
|
| 5296 | + $texte = unicode2charset($texte); |
|
| 5297 | + } |
|
| 5298 | + // On enlève les espaces indésirables |
|
| 5299 | + $texte = trim($texte); |
|
| 5300 | 5300 | |
| 5301 | - // On enlève les accents et cie |
|
| 5302 | - $texte = translitteration($texte); |
|
| 5301 | + // On enlève les accents et cie |
|
| 5302 | + $texte = translitteration($texte); |
|
| 5303 | 5303 | |
| 5304 | - // On remplace tout ce qui n'est pas un mot par un séparateur |
|
| 5305 | - $texte = preg_replace(',[\W_]+,ms', $separateur, $texte); |
|
| 5304 | + // On remplace tout ce qui n'est pas un mot par un séparateur |
|
| 5305 | + $texte = preg_replace(',[\W_]+,ms', $separateur, $texte); |
|
| 5306 | 5306 | |
| 5307 | - // nettoyer les doubles occurences du separateur si besoin |
|
| 5308 | - while (strpos($texte, "$separateur$separateur") !== false) { |
|
| 5309 | - $texte = str_replace("$separateur$separateur", $separateur, $texte); |
|
| 5310 | - } |
|
| 5307 | + // nettoyer les doubles occurences du separateur si besoin |
|
| 5308 | + while (strpos($texte, "$separateur$separateur") !== false) { |
|
| 5309 | + $texte = str_replace("$separateur$separateur", $separateur, $texte); |
|
| 5310 | + } |
|
| 5311 | 5311 | |
| 5312 | - // pas de separateur au debut ni a la fin |
|
| 5313 | - $texte = trim($texte, $separateur); |
|
| 5312 | + // pas de separateur au debut ni a la fin |
|
| 5313 | + $texte = trim($texte, $separateur); |
|
| 5314 | 5314 | |
| 5315 | - // en minuscules |
|
| 5316 | - $texte = strtolower($texte); |
|
| 5315 | + // en minuscules |
|
| 5316 | + $texte = strtolower($texte); |
|
| 5317 | 5317 | |
| 5318 | - switch ($type) { |
|
| 5319 | - case 'class': |
|
| 5320 | - case 'id': |
|
| 5321 | - case 'anchor': |
|
| 5322 | - if (preg_match(',^\d,', $texte)) { |
|
| 5323 | - $texte = substr($type, 0, 1).$texte; |
|
| 5324 | - } |
|
| 5325 | - } |
|
| 5318 | + switch ($type) { |
|
| 5319 | + case 'class': |
|
| 5320 | + case 'id': |
|
| 5321 | + case 'anchor': |
|
| 5322 | + if (preg_match(',^\d,', $texte)) { |
|
| 5323 | + $texte = substr($type, 0, 1).$texte; |
|
| 5324 | + } |
|
| 5325 | + } |
|
| 5326 | 5326 | |
| 5327 | - if (strlen($texte)>$longueur_maxi) { |
|
| 5328 | - $texte = substr($texte, 0, $longueur_maxi); |
|
| 5329 | - } |
|
| 5327 | + if (strlen($texte)>$longueur_maxi) { |
|
| 5328 | + $texte = substr($texte, 0, $longueur_maxi); |
|
| 5329 | + } |
|
| 5330 | 5330 | |
| 5331 | - if (strlen($texte) < $longueur_mini and $longueur_mini < $longueur_maxi) { |
|
| 5332 | - if (preg_match(',^\d,', $texte)) { |
|
| 5333 | - $texte = ($type ? substr($type,0,1) : "s") . $texte; |
|
| 5334 | - } |
|
| 5335 | - $texte .= $separateur . md5($original); |
|
| 5336 | - $texte = substr($texte, 0, $longueur_mini); |
|
| 5337 | - } |
|
| 5331 | + if (strlen($texte) < $longueur_mini and $longueur_mini < $longueur_maxi) { |
|
| 5332 | + if (preg_match(',^\d,', $texte)) { |
|
| 5333 | + $texte = ($type ? substr($type,0,1) : "s") . $texte; |
|
| 5334 | + } |
|
| 5335 | + $texte .= $separateur . md5($original); |
|
| 5336 | + $texte = substr($texte, 0, $longueur_mini); |
|
| 5337 | + } |
|
| 5338 | 5338 | |
| 5339 | - return $texte; |
|
| 5339 | + return $texte; |
|
| 5340 | 5340 | } |
| 5341 | 5341 | |
| 5342 | 5342 | |
@@ -5357,14 +5357,14 @@ discard block |
||
| 5357 | 5357 | * @exemple `<:info_maximum|label_nettoyer:>` |
| 5358 | 5358 | */ |
| 5359 | 5359 | function label_nettoyer(string $text, bool $ucfirst = true) : string { |
| 5360 | - $label = rtrim($text, " : \t\n\r\0\x0B\xc2\xa0"); |
|
| 5361 | - if ($label and $label[-1] === ';') { |
|
| 5362 | - $label = preg_replace("#(\ )+$#", "", $label); |
|
| 5363 | - } |
|
| 5364 | - if ($ucfirst) { |
|
| 5365 | - $label = spip_ucfirst($label); |
|
| 5366 | - } |
|
| 5367 | - return $label; |
|
| 5360 | + $label = rtrim($text, " : \t\n\r\0\x0B\xc2\xa0"); |
|
| 5361 | + if ($label and $label[-1] === ';') { |
|
| 5362 | + $label = preg_replace("#(\ )+$#", "", $label); |
|
| 5363 | + } |
|
| 5364 | + if ($ucfirst) { |
|
| 5365 | + $label = spip_ucfirst($label); |
|
| 5366 | + } |
|
| 5367 | + return $label; |
|
| 5368 | 5368 | } |
| 5369 | 5369 | |
| 5370 | 5370 | /** |
@@ -5377,8 +5377,8 @@ discard block |
||
| 5377 | 5377 | * @exemple `<:info_maximum|label_ponctuer:>` |
| 5378 | 5378 | */ |
| 5379 | 5379 | function label_ponctuer(string $text, bool $ucfirst = true) : string { |
| 5380 | - $label = label_nettoyer($text, $ucfirst); |
|
| 5381 | - return _T('label_ponctuer', ['label' => $label]); |
|
| 5380 | + $label = label_nettoyer($text, $ucfirst); |
|
| 5381 | + return _T('label_ponctuer', ['label' => $label]); |
|
| 5382 | 5382 | } |
| 5383 | 5383 | |
| 5384 | 5384 | |
@@ -5391,19 +5391,19 @@ discard block |
||
| 5391 | 5391 | * @return array |
| 5392 | 5392 | */ |
| 5393 | 5393 | function helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, $fonction) { |
| 5394 | - if (!in_array($fonction, ['objet_lister_parents', 'objet_lister_enfants', 'objet_lister_parents_par_type', 'objet_lister_enfants_par_type'])) { |
|
| 5395 | - return []; |
|
| 5396 | - } |
|
| 5394 | + if (!in_array($fonction, ['objet_lister_parents', 'objet_lister_enfants', 'objet_lister_parents_par_type', 'objet_lister_enfants_par_type'])) { |
|
| 5395 | + return []; |
|
| 5396 | + } |
|
| 5397 | 5397 | |
| 5398 | - // compatibilite signature inversee |
|
| 5399 | - if (is_numeric($objet) and !is_numeric($id_objet)) { |
|
| 5400 | - list($objet, $id_objet) = [$id_objet, $objet]; |
|
| 5401 | - } |
|
| 5398 | + // compatibilite signature inversee |
|
| 5399 | + if (is_numeric($objet) and !is_numeric($id_objet)) { |
|
| 5400 | + list($objet, $id_objet) = [$id_objet, $objet]; |
|
| 5401 | + } |
|
| 5402 | 5402 | |
| 5403 | - if (!function_exists($fonction)) { |
|
| 5404 | - include_spip('base/objets'); |
|
| 5405 | - } |
|
| 5406 | - return $fonction($objet, $id_objet); |
|
| 5403 | + if (!function_exists($fonction)) { |
|
| 5404 | + include_spip('base/objets'); |
|
| 5405 | + } |
|
| 5406 | + return $fonction($objet, $id_objet); |
|
| 5407 | 5407 | } |
| 5408 | 5408 | |
| 5409 | 5409 | |
@@ -5418,7 +5418,7 @@ discard block |
||
| 5418 | 5418 | * @return array |
| 5419 | 5419 | */ |
| 5420 | 5420 | function filtre_objet_lister_parents_dist($objet, $id_objet) { |
| 5421 | - return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents'); |
|
| 5421 | + return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents'); |
|
| 5422 | 5422 | } |
| 5423 | 5423 | |
| 5424 | 5424 | /** |
@@ -5432,7 +5432,7 @@ discard block |
||
| 5432 | 5432 | * @return array |
| 5433 | 5433 | */ |
| 5434 | 5434 | function filtre_objet_lister_parents_par_type_dist($objet, $id_objet) { |
| 5435 | - return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents_par_type'); |
|
| 5435 | + return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_parents_par_type'); |
|
| 5436 | 5436 | } |
| 5437 | 5437 | |
| 5438 | 5438 | /** |
@@ -5446,7 +5446,7 @@ discard block |
||
| 5446 | 5446 | * @return array |
| 5447 | 5447 | */ |
| 5448 | 5448 | function filtre_objet_lister_enfants_dist($objet, $id_objet) { |
| 5449 | - return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants'); |
|
| 5449 | + return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants'); |
|
| 5450 | 5450 | } |
| 5451 | 5451 | |
| 5452 | 5452 | /** |
@@ -5460,6 +5460,6 @@ discard block |
||
| 5460 | 5460 | * @return array |
| 5461 | 5461 | */ |
| 5462 | 5462 | function filtre_objet_lister_enfants_par_type_dist($objet, $id_objet) { |
| 5463 | - return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants_par_type'); |
|
| 5463 | + return helper_filtre_objet_lister_enfants_ou_parents($objet, $id_objet, 'objet_lister_enfants_par_type'); |
|
| 5464 | 5464 | } |
| 5465 | 5465 | |