5 |
florian |
1 |
<?php
|
|
|
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
|
|
3 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
4 |
// | PHP version 4.1 |
|
|
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
8 |
// | This library is free software; you can redistribute it and/or |
|
|
|
9 |
// | modify it under the terms of the GNU Lesser General Public |
|
|
|
10 |
// | License as published by the Free Software Foundation; either |
|
|
|
11 |
// | version 2.1 of the License, or (at your option) any later version. |
|
|
|
12 |
// | |
|
|
|
13 |
// | This library is distributed in the hope that it will be useful, |
|
|
|
14 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
15 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
|
16 |
// | Lesser General Public License for more details. |
|
|
|
17 |
// | |
|
|
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
|
|
19 |
// | License along with this library; if not, write to the Free Software |
|
|
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
55 |
florian |
22 |
// CVS : $Id: index.php,v 1.5 2005-11-30 13:58:45 florian Exp $
|
5 |
florian |
23 |
/**
|
|
|
24 |
* Index
|
|
|
25 |
*
|
|
|
26 |
* Première page chargée du répertoire de l'appli bazar. Sert à tester l'appli
|
|
|
27 |
*
|
|
|
28 |
*@package bazar
|
|
|
29 |
//Auteur original :
|
|
|
30 |
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
|
|
|
31 |
*@author Florian SCHMITT <florian@ecole-et-nature.org>
|
|
|
32 |
//Autres auteurs :
|
|
|
33 |
*@copyright Tela-Botanica 2000-2004
|
55 |
florian |
34 |
*@version $Revision: 1.5 $ $Date: 2005-11-30 13:58:45 $
|
5 |
florian |
35 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
39 |
// | CORPS du PROGRAMME |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
41 |
|
|
|
42 |
include "bazar.php";
|
|
|
43 |
echo afficherContenuCorps();
|
|
|
44 |
|
|
|
45 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
|
|
46 |
*
|
|
|
47 |
* $Log: not supported by cvs2svn $
|
55 |
florian |
48 |
* Revision 1.4 2005/07/21 19:03:12 florian
|
|
|
49 |
* nouveautés bazar: templates fiches, correction de bugs, ...
|
|
|
50 |
*
|
5 |
florian |
51 |
* Revision 1.2 2005/02/22 15:34:04 florian
|
|
|
52 |
* integration dans Papyrus
|
|
|
53 |
*
|
|
|
54 |
* Revision 1.1.1.1 2005/02/17 18:05:11 florian
|
|
|
55 |
* Import initial de Bazar
|
|
|
56 |
*
|
|
|
57 |
* Revision 1.1.1.1 2005/02/17 11:09:50 florian
|
|
|
58 |
* Import initial
|
|
|
59 |
*
|
|
|
60 |
* Revision 1.1.1.1 2005/02/16 18:06:35 florian
|
|
|
61 |
* import de la nouvelle version
|
|
|
62 |
*
|
|
|
63 |
*
|
|
|
64 |
* +-- Fin du code ----------------------------------------------------------------------------------------+
|
|
|
65 |
*/
|
|
|
66 |
?>
|