\n\n\n"; exit; } $wpkgAdmin = isWpkgAdmin($login); $wpkgUser = isWpkgUser($login); //echo "\n"; if ( ! $wpkgUser ) { //include "entete.inc.php"; ?>

Déploiement d'applications

Vous n'avez pas les droits nécessaires à l'utilisation de ce module !
0) echo "xsl=".$xsl."
\n"; #if ($DEBUG > 0) echo "xml=".$xml."
\n"; #if ($DEBUG > 0) print_r($param); # $wpkgAdmin=1; if ($wpkgUser) { if (file_exists("$xml")) { // Date: Mon, 15 Jan 2007 10:06:50 GMT $dateLastModification = filemtime("$xml"); if (httpConditional($dateLastModification)) { exit(); //No need to send anything } else { $DateFichier = gmdate('D, d M Y H:i:s \G\M\T', $dateLastModification); header("Content-type: text/html"); header("Last-Modified: $DateFichier"); header("Expires: " . gmdate("D, d M Y H:i:s T", time() )); header("Pragma: no-cache"); //header("Cache-Control: max-age=5, s-maxage=5, no-cache, must-revalidate"); header("Cache-Control: must-revalidate"); header("Content-Disposition: inline; filename=".basename ($xml)); foreach($param as $key=> $val){ $parametres .= " --stringparam '" . $key . "' '" . $val . "'"; } # echo "xsltproc $parametres '$xsl' '$xml' 2>&1"; passthru ( "xsltproc $parametres '$xsl' '$xml' 2>&1", $status); if ($status != 0 ) { echo "
\nErreur xsltproc $parametres $xsl $xml : status=$status

\n"; return false; } else { return true; } } } else { header("HTTP/1.1 404 Not found"); header("Status: 404 Not found"); echo "Erreur : Le fichier $xml est introuvable !\n"; echo "Sans doute un problème de droits.\n"; return false; } } else { echo "Erreur : vous n'êtes pas autorisé à afficher cette page !\n"; return false; } } function get_xml($filename) // Retourne le fichier xml demandé (profiles.xml, packages.xml ou hosts.xml) si les droits de l'utilisateur en cours le permettent { global $DEBUG, $wpkgAdmin, $wpkgUser, $wpkgroot; #$nomFichier = $aFilePath[$nPath-1]; $PathFichier = "$wpkgroot/$filename"; #if ($DEBUG > 0) echo "nomFichier=".$nomFichier."
\n"; #if ($DEBUG > 0) echo "PathFichier=".$PathFichier."
\n"; # $wpkgAdmin=1; if ($wpkgUser) { if (file_exists("$PathFichier")) { // Date: Mon, 15 Jan 2007 10:06:50 GMT $dateLastModification = filemtime("$PathFichier"); if (httpConditional($dateLastModification)) { exit(); //No need to send anything } else { //$DateFichier = gmdate("D, d M Y H:i:s T", $dateLastModification); //$DateFichier = gmdate("D, d M Y H:i:s", $dateLastModification) . " GMT" ; $DateFichier = gmdate('D, d M Y H:i:s \G\M\T', $dateLastModification); # mktime ( int hour , int minute , int second , int month , int day , int year , int is_dst ) # $DatePassee = gmdate("D, d M Y H:i:s T", mktime(0, 0, 0, 1, 1, 1998)); header("Content-type: text/xml"); header("Last-Modified: $DateFichier"); //header("Expires: " . gmdate("D, d M Y H:i:s T", time() + 5)); header("Pragma: no-cache"); //header("Cache-Control: max-age=5, s-maxage=5, no-cache, must-revalidate"); header("Cache-Control: must-revalidate"); header("Content-Disposition: inline; filename=".basename ($filename)); #header("Cache-Control: no-store, no-cache, must-revalidate"); //flush(); if ( readfile("$PathFichier") ) { return true; } else { return false; } } } else { header("HTTP/1.1 404 Not found"); header("Status: 404 Not found"); echo "Erreur : Le fichier $PathFichier est introuvable !\n"; echo "Sans doute un problème de droits.\n"; return false; } } else { echo "Erreur : vous n'êtes pas administrateur wpkg !\n"; return false; } } function get_fichierCP850($filename) // Retourne le fichier demandé (utilisé pour les fichiers rapports/*.log) // après conversion CP850/CR-LF..819/CR-LF ( dos oem -> iso-8859-1 ) { global $DEBUG, $wpkgAdmin, $wpkgUser, $wpkgroot; #$nomFichier = $aFilePath[$nPath-1]; $PathFichier = "$wpkgroot/$filename"; #if ($DEBUG > 0) echo "nomFichier=".$nomFichier."
\n"; #if ($DEBUG > 0) echo "PathFichier=".$PathFichier."
\n"; # $wpkgAdmin=1; if ($wpkgUser) { if (file_exists("$PathFichier")) { // Date: Mon, 15 Jan 2007 10:06:50 GMT $DateFichier = gmdate("D, d M Y H:i:s T", filemtime("$PathFichier")); # mktime ( int hour , int minute , int second , int month , int day , int year , int is_dst ) # $DatePassee = gmdate("D, d M Y H:i:s T", mktime(0, 0, 0, 1, 1, 1998)); header("Content-Transfer-Encoding: 8bit"); header("Content-type: text/html; charset=ISO-8859-1"); // IE ne gère pas bien text/plain :( header("Last-Modified: $DateFichier"); header("Expires: " . gmdate("D, d M Y H:i:s T", time() + 30)); header("Pragma: no-cache"); header("Cache-Control: max-age=5, s-maxage=5, no-cache, must-revalidate"); header("Content-Disposition: inline; filename=".$filename.".txt"); #header("Cache-Control: no-store, no-cache, must-revalidate"); //flush(); echo "
\n"; // toujours pour IE
			$handle = fopen ("$PathFichier", "r");
			$contents = fread ($handle, filesize ($PathFichier));
			fclose ($handle);
			echo htmlspecialchars($contents, ENT_COMPAT | ENT_HTML401, 'ISO-8859-1');
            //if ( readfile("$PathFichier") ) {
            // Conversion OEM -> ANSI déjà faite dans le script (plus de dépendance avec recode)
            //passthru ( "cat $PathFichier | recode CP850/CR-LF..819/CR-LF", $status);
            // htmlspecialchars(passthru ( "cat $PathFichier", $status));
            echo "\n
\n"; if ( $status == 0 ) { return true; } else { return false; } } else { header("HTTP/1.1 404 Not found"); header("Status: 404 Not found"); echo "Erreur : Le fichier $PathFichier est introuvable !\n"; echo "Sans doute un problème de droits.\n"; return false; } } else { echo "Erreur : vous n'êtes pas autorisé à utiliser cette fonction !\n"; return false; } } ?>