uawdijnntqw1x1x1
IP : 216.73.217.142
Hostname : webm002.cluster111.gra.hosting.ovh.net
Kernel : Linux webm002.cluster111.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
/
atelierpru
/
provence
/
ecrire
/
install
/
..
/
exec
/
..
/
plugins
/
..
/
xml
/
indenter.php
/
/
<?php /***************************************************************************\ * SPIP, Systeme de publication pour l'internet * * * * Copyright (c) 2001-2019 * * Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James * * * * Ce programme est un logiciel libre distribue sous licence GNU/GPL. * * Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. * \***************************************************************************/ if (!defined('_ECRIRE_INC_VERSION')) { return; } class IndenteurXML { // http://code.spip.net/@debutElement public function debutElement($phraseur, $name, $attrs) { xml_debutElement($this, $name, $attrs); } // http://code.spip.net/@finElement public function finElement($phraseur, $name) { xml_finElement($this, $name); } // http://code.spip.net/@textElement public function textElement($phraseur, $data) { xml_textElement($this, $data); } public function piElement($phraseur, $target, $data) { xml_PiElement($this, $target, $data); } // http://code.spip.net/@defautElement public function defaultElement($phraseur, $data) { xml_defaultElement($this, $data); } // http://code.spip.net/@phraserTout public function phraserTout($phraseur, $data) { xml_parsestring($this, $data); } public $depth = ""; public $res = ""; public $err = array(); public $contenu = array(); public $ouvrant = array(); public $reperes = array(); public $entete = ''; public $page = ''; public $dtc = null; public $sax = null; } // http://code.spip.net/@xml_indenter_dist function xml_indenter_dist($page, $apply = false) { $sax = charger_fonction('sax', 'xml'); $f = new IndenteurXML(); $sax($page, $apply, $f); if (!$f->err) { return $f->entete . $f->res; } spip_log("indentation impossible " . count($f->err) . " erreurs de validation"); return $f->entete . $f->page; }
/home/atelierpru/provence/ecrire/install/../exec/../plugins/../xml/indenter.php