uawdijnntqw1x1x1
IP : 216.73.217.34
Hostname : webm019.cluster129.gra.hosting.ovh.net
Kernel : Linux webm019.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
checkyd
/
www
/
plugins-dist
/
plan
/
..
/
textwheel
/
inc
/
ressource.php
/
/
<?php /* * transforme un raccourci de ressource en un lien minimaliste * * */ define('_EXTRAIRE_RESSOURCES', ',' . '<"?(https?://|[^\s][\w -]+\.[\w -]+)[^<]*>' . ',UimsS'); /* pipeline pour typo */ function tw_post_typo($t) { if (strpos($t, '<') !== false) { $t = preg_replace_callback(_EXTRAIRE_RESSOURCES, 'tw_traiter_ressources', $t); } return $t; } /* pipeline pour propre */ function tw_pre_liens($t) { if (strpos($t, '<') !== false) { $t = preg_replace_callback(_EXTRAIRE_RESSOURCES, 'tw_traiter_ressources', $t); // echapper les autoliens eventuellement inseres (en une seule fois) if (strpos($t, "<html>") !== false) { $t = echappe_html($t); } } return $t; } function tw_traiter_ressources($r) { $html = null; include_spip('inc/lien'); $url = explode(' ', trim($r[0], '<>')); $url = $url[0]; # <http://url/absolue> if (preg_match(',^https?://,i', $url)) { $html = PtoBR(propre("<span class='ressource spip_out'><[->" . $url . "]></span>")); } # <url/relative> else { if (false !== strpos($url, '/')) { $html = PtoBR(propre("<span class='ressource spip_in'><[->" . $url . "]></span>")); } # <fichier.rtf> else { if ( preg_match(',\.([^.]+)$,', $url, $regs) and file_exists($f = _DIR_IMG . $regs[1] . '/' . $url) ) { $html = PtoBR(propre("<span class='ressource spip_in'><[" . $url . "->" . $f . "]></span>")); } else { $html = PtoBR(propre("<span class='ressource'><" . $url . "></span>")); } } } return '<html>' . $html . '</html>'; }
/home/checkyd/www/plugins-dist/plan/../textwheel/inc/ressource.php