| Line 19... | 
            Line 19... | 
          
          
            | 19 | 
            // |                                                                                                      |
  | 
            19 | 
            // |                                                                                                      |
  | 
          
          
            | 20 | 
            // | You should have received a copy of the GNU General Public License                                    |
  | 
            20 | 
            // | You should have received a copy of the GNU General Public License                                    |
  | 
          
          
            | 21 | 
            // | along with Foobar; if not, write to the Free Software                                                |
  | 
            21 | 
            // | along with Foobar; if not, write to the Free Software                                                |
  | 
          
          
            | 22 | 
            // | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
  | 
            22 | 
            // | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
  | 
          
          
            | 23 | 
            // +------------------------------------------------------------------------------------------------------+
  | 
            23 | 
            // +------------------------------------------------------------------------------------------------------+
  | 
          
          
            | 24 | 
            // CVS : $Id: affi_configuration.inc.php,v 1.12 2005-08-25 08:59:12 ddelon Exp $
  | 
            24 | 
            // CVS : $Id: affi_configuration.inc.php,v 1.13 2006-04-28 12:41:49 florian Exp $
  | 
          
          
            | 25 | 
            /**
  | 
            25 | 
            /**
  | 
          
          
            | 26 | 
            * Application réalisant l'affichage du contenu stocké dans Papyrus.
  | 
            26 | 
            * Application réalisant l'affichage du contenu stocké dans Papyrus.
  | 
          
          
            | 27 | 
            *
  | 
            27 | 
            *
  | 
          
          
            | 28 | 
            * Les constantes et variables de configuration de l'application Afficheur.
  | 
            28 | 
            * Les constantes et variables de configuration de l'application Afficheur.
  | 
          
          
            | 29 | 
            *
  | 
            29 | 
            *
  | 
          
          
            | Line 32... | 
            Line 32... | 
          
          
            | 32 | 
            //Auteur original :
  | 
            32 | 
            //Auteur original :
  | 
          
          
            | 33 | 
            *@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
  | 
            33 | 
            *@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
  | 
          
          
            | 34 | 
            //Autres auteurs :
  | 
            34 | 
            //Autres auteurs :
  | 
          
          
            | 35 | 
            *@author        Aucun
  | 
            35 | 
            *@author        Aucun
  | 
          
          
            | 36 | 
            *@copyright     Tela-Botanica 2000-2004
  | 
            36 | 
            *@copyright     Tela-Botanica 2000-2004
  | 
          
          
            | 37 | 
            *@version       $Revision: 1.12 $ $Date: 2005-08-25 08:59:12 $
  | 
            37 | 
            *@version       $Revision: 1.13 $ $Date: 2006-04-28 12:41:49 $
  | 
          
          
            | 38 | 
            // +------------------------------------------------------------------------------------------------------+
  | 
            38 | 
            // +------------------------------------------------------------------------------------------------------+
  | 
          
          
            | 39 | 
            */
  | 
            39 | 
            */
  | 
          
          
            | Line 40... | 
            Line 40... | 
          
          
            | 40 | 
             
  | 
            40 | 
             
  | 
          
          
            | 41 | 
            // +------------------------------------------------------------------------------------------------------+
  | 
            41 | 
            // +------------------------------------------------------------------------------------------------------+
  | 
          
          
            | Line 48... | 
            Line 48... | 
          
          
            | 48 | 
            // +------------------------------------------------------------------------------------------------------+
  | 
            48 | 
            // +------------------------------------------------------------------------------------------------------+
  | 
          
          
            | 49 | 
            // Chemin des fichiers à inclure.
  | 
            49 | 
            // Chemin des fichiers à inclure.
  | 
          
          
            | 50 | 
            /** Chemin vers la bibliothèque PEAR.*/
  | 
            50 | 
            /** Chemin vers la bibliothèque PEAR.*/
  | 
          
          
            | 51 | 
            define('AFFI_CHEMIN_BIBLIOTHEQUE_PEAR', '');
  | 
            51 | 
            define('AFFI_CHEMIN_BIBLIOTHEQUE_PEAR', '');
  | 
          
          
            | 52 | 
            /** Chemin vers la bibliothèque API.*/
  | 
            52 | 
            /** Chemin vers la bibliothèque API.*/
  | 
          
          
            | 53 | 
            define('AFFI_CHEMIN_BIBLIOTHEQUE_API', GEN_CHEMIN_API);
  | 
            53 | 
            define('AFFI_CHEMIN_BIBLIOTHEQUE_API', 'api'.GEN_SEP);
  | 
          
          
            | 54 | 
            /** Chemin vers la bibliothèque API : fckeditor.*/
  | 
            54 | 
            /** Chemin vers la bibliothèque API : fckeditor.*/
  | 
          
          
            | 55 | 
            define('AFFI_CHEMIN_FCKEDITOR', AFFI_CHEMIN_BIBLIOTHEQUE_API.'fckeditor'.GEN_SEP);
  | 
            55 | 
            define('AFFI_CHEMIN_FCKEDITOR', AFFI_CHEMIN_BIBLIOTHEQUE_API.'fckeditor'.GEN_SEP);
  | 
          
          
            | 56 | 
            /** Chemin vers l'application Admin de l'afficheur de Papyrus.*/
  | 
            56 | 
            /** Chemin vers l'application Admin de l'afficheur de Papyrus.*/
  | 
          
          
            | 57 | 
            define('AFFI_CHEMIN_APPLICATION', GEN_CHEMIN_APPLICATION.'afficheur'.GEN_SEP);
  | 
            57 | 
            define('AFFI_CHEMIN_APPLICATION', GEN_CHEMIN_APPLICATION.'afficheur'.GEN_SEP);
  | 
          
          
            | 58 | 
            /** Chemin vers le dossier des styles de l'application.*/
  | 
            58 | 
            /** Chemin vers le dossier des styles de l'application.*/
  | 
          
          
            | Line 104... | 
            Line 104... | 
          
          
            | 104 | 
             
  | 
            104 | 
             
  | 
          
          
            | 105 | 
             
  | 
            105 | 
             
  | 
          
          
            | 106 | 
            /* +--Fin du code ----------------------------------------------------------------------------------------+
  | 
            106 | 
            /* +--Fin du code ----------------------------------------------------------------------------------------+
  | 
          
          
            | - | 
               | 
            107 | 
            *
  | 
          
          
            | - | 
               | 
            108 | 
            * $Log: not supported by cvs2svn $
  | 
          
          
            | - | 
               | 
            109 | 
            * Revision 1.12  2005/08/25 08:59:12  ddelon
  | 
          
          
            | 107 | 
            *
  | 
            110 | 
            * Integrateur Wikini et administration des Wikini
  | 
          
          
            | 108 | 
            * $Log: not supported by cvs2svn $
  | 
            111 | 
            *
  | 
          
          
            | 109 | 
            * Revision 1.11  2005/08/18 10:20:04  ddelon
  | 
            112 | 
            * Revision 1.11  2005/08/18 10:20:04  ddelon
  | 
          
          
            | 110 | 
            * Integrateur Wikini et Acces PEAR
  | 
            113 | 
            * Integrateur Wikini et Acces PEAR
  | 
          
          
            | 111 | 
            *
  | 
            114 | 
            *
  |