Go to most recent revision | 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.1 $ $Date: 2005-01-19 15:44:03 $// +------------------------------------------------------------------------------------------------------+*/// +------------------------------------------------------------------------------------------------------+// | ENTETE du PROGRAMME |// +------------------------------------------------------------------------------------------------------+require_once '../configuration/eribo_config.php';require_once '../configuration/eribo_config_avancee.inc.php';// +------------------------------------------------------------------------------------------------------+// | CORPS du PROGRAMME |// +------------------------------------------------------------------------------------------------------+header('Content-type: text/xml');if (!empty($_REQUEST['listemacroelements'])) {$nom = EFSE_CHEMIN_GENERATEUR_RACINE.EFSE_CHEMIN_DEF_MACRO.$_REQUEST['listemacroelements'];$file = fopen($nom, 'r');$taille = fileSize($nom);$lecture = fread($file,$taille);fclose($file);echo $lecture;}if (!empty($_REQUEST['groupesmacroelements'])) {$nom = EFSE_CHEMIN_GENERATEUR_RACINE.EFSE_CHEMIN_DEF_MACRO_GROUPE.$_REQUEST['groupesmacroelements'];$file = fopen($nom, 'r');$taille = fileSize($nom);$lecture = fread($file, $taille);fclose($file);echo $lecture;}// +------------------------------------------------------------------------------------------------------+// | LISTE de FONCTIONS |// +------------------------------------------------------------------------------------------------------+/* +--Fin du code ----------------------------------------------------------------------------------------+** $Log: not supported by cvs2svn $* 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 ----------------------------------------------------------------------------------------+*/?>