Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 94 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php
/*vim: set expandtab tabstop=4 shiftwidth=4: */ 
// +------------------------------------------------------------------------------------------------------+
// | PHP version 5.0.3                                                                                    |
// +------------------------------------------------------------------------------------------------------+
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
// +------------------------------------------------------------------------------------------------------+
// | This file is part of Serveur eRibosome.                                                              |
// |                                                                                                      |
// | Foobar is free software; you can redistribute it and/or modify                                       |
// | it under the terms of the GNU General Public License as published by                                 |
// | the Free Software Foundation; either version 2 of the License, or                                    |
// | (at your option) any later version.                                                                  |
// |                                                                                                      |
// | Foobar is distributed in the hope that it will be useful,                                            |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
// | GNU General Public License for more details.                                                         |
// |                                                                                                      |
// | You should have received a copy of the GNU General Public License                                    |
// | along with Foobar; if not, write to the Free Software                                                |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
// +------------------------------------------------------------------------------------------------------+
// 
/**
* Fichier permmetant d'afficher les sources.
*
* Ce fichier permet d'afficher le code source d'un macro-element ou d'un groupe
* de macro-elements
* 
* Abréviation du programme : ERIBO
*
*@package eRibosome
*@subpackage Generateur
//Auteur original :
*@author        Frédéric LEGENS <flegens@free.fr>
//Autres auteurs :
*@author        Aucun
*@copyright     Tela-Botanica 2000-2004
*@version       $Revision: 1.2 $ $Date: 2005-01-23 22:22:42 $
// +------------------------------------------------------------------------------------------------------+
*/

// +------------------------------------------------------------------------------------------------------+
// |                                            ENTETE du PROGRAMME                                       |
// +------------------------------------------------------------------------------------------------------+

require_once '../configuration/eribo_config.php';
require_once '../configuration/eribo_config_avancee.inc.php';

// +------------------------------------------------------------------------------------------------------+
// |                                            CORPS du PROGRAMME                                        |
// +------------------------------------------------------------------------------------------------------+


header('Content-type: text/html');
if (!empty($_REQUEST['macro_elements'])) {
    $nom = EFSE_CHEMIN_GENERATEUR_RACINE.EFSE_CHEMIN_DEF_MACRO.$_REQUEST['macro_elements'];
    echo genererAffichage(EFSE_CHEMIN_GENE_XSLT.'afficher_macroelement.xslt',$nom);
}

if (!empty($_REQUEST['groupes_macro_elements'])) {
    $nom = EFSE_CHEMIN_GENERATEUR_RACINE.EFSE_CHEMIN_DEF_MACRO_GROUPE.$_REQUEST['groupes_macro_elements'];
    echo genererAffichage(EFSE_CHEMIN_GENE_XSLT.'afficher_groupemacroelement.xslt',$nom);
}

// +------------------------------------------------------------------------------------------------------+
// |                                           LISTE de FONCTIONS                                         |
// +------------------------------------------------------------------------------------------------------+

function genererAffichage($xsltFilePath, $xmlFilePath)
{
    $processeur = new XSLTprocessor();
    
    $style = new domDocument();
    $style->load($xsltFilePath);
    
    $processeur->importStyleSheet($style);
    
    $doc = new domDocument();
    
    $doc->load($xmlFilePath);
    
    return $processeur->transformToXML($doc);
}

/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.1  2005/01/19 15:44:03  jpm
* Changement de nom.
*
* Revision 1.7  2005/01/19 15:43:40  jpm
* Changement de nom des fichiers à appeler.
*
* Revision 1.6  2004/12/23 15:45:48  jpm
* Changement de version de PHP.
*
* Revision 1.5  2004/12/23 15:44:57  jpm
* Mise en conformité convention de codage.
*
* Revision 1.4  2004/12/23 15:22:15  jpm
* Modification du fichier de config appelé.
*
* Revision 1.3  2004/12/22 23:28:14  fred
* intégration de la license
*
*
* +-- Fin du code ----------------------------------------------------------------------------------------+
*/
?>