Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 433 → Rev 434

/trunk/client/integrateur_wikini/configuration/iw_config.inc.php
21,7 → 21,7
// | along with Foobar; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: iw_config.inc.php,v 1.1 2005-08-18 10:19:55 ddelon Exp $
// CVS : $Id: iw_config.inc.php,v 1.2 2005-08-25 08:59:12 ddelon Exp $
/**
* Configuration de l'intégrateur de page Wikini
*
34,7 → 34,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.1 $ $Date: 2005-08-18 10:19:55 $
*@version $Revision: 1.2 $ $Date: 2005-08-25 08:59:12 $
// +------------------------------------------------------------------------------------------------------+
*/
 
92,7 → 92,8
/** Constantes de connexion aux bases de données MySQL*/
global $wikini_config_defaut;
$wikini_config_defaut = array(
'wakka_version' => '',
"wakka_version" => "0.1.1",
"wikini_version" => "0.4.3",
'debug' => 'yes',
'mysql_host' => HOTE,
'mysql_database' => BD_WIKINI,
101,14 → 102,13
'table_prefix' => $GLOBALS['_GEN_commun']['info_application']->table_prefix,
'root_page' => $GLOBALS['_GEN_commun']['info_application']->page,
'wakka_name' => $GLOBALS['_GEN_commun']['info_application']->wikini_nom,
'base_url' => $GLOBALS['_GEN_commun']['url']->getUrl().'&wiki=',
'base_url' => str_replace('&', '&', $GLOBALS['_GEN_commun']['url']->getUrl()).'&wiki=',
'rewrite_mode' => '0',
'meta_keywords' => '',
'meta_description' => '',
'action_path' => IW_CHEMIN_BIBLIO_WIKINI.'actions',
'handler_path' => IW_CHEMIN_BIBLIO_WIKINI.'handlers',
'formatters_path' => IW_CHEMIN_BIBLIO_WIKINI.'formatters',
'interwiki_path' => IW_CHEMIN_BIBLIO_WIKINI,
'action_path' => '/home/david/workspace/papyrus/wikini/wikini_01/actions',
'handler_path' => '/home/david/workspace/papyrus/wikini/wikini_01/handlers',
'formatters_path' => '/home/david/workspace/papyrus/wikini/wikini_01/formatters',
'header_action' => 'header',
'footer_action' => 'footer',
'navigation_links' => 'DerniersChangements :: DerniersCommentaires :: ParametresUtilisateur',
118,7 → 118,7
'default_read_acl' => '*',
'default_comment_acl' => '*',
'preview_before_save' => '0');
 
// +------------------------------------------------------------------------------------------------------+
// | PIED du PROGRAMME |
// +------------------------------------------------------------------------------------------------------+
/trunk/client/integrateur_wikini/configuration/adwi_configuration.inc.php
New file
0,0 → 1,77
<?php
/*vim: set expandtab tabstop=4 shiftwidth=4: */
// +------------------------------------------------------------------------------------------------------+
// | PHP version 4.1 |
// +------------------------------------------------------------------------------------------------------+
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org) |
// +------------------------------------------------------------------------------------------------------+
// | This library is free software; you can redistribute it and/or |
// | modify it under the terms of the GNU Lesser General Public |
// | License as published by the Free Software Foundation; either |
// | version 2.1 of the License, or (at your option) any later version. |
// | |
// | This library 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 |
// | Lesser General Public License for more details. |
// | |
// | You should have received a copy of the GNU Lesser General Public |
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: adwi_configuration.inc.php,v 1.1 2005-08-25 08:59:12 ddelon Exp $
/**
* Fichier de configuration général de l'application Administration des wikini
*
* Permet de définir certains paramètres valables pour toutes l'application
* Administrateur des Wikni
*
*@package Admin_Wikini
*@subpackage Configuration
//Auteur original :
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
//Autres auteurs :
*@author David Delon <david.delon@clapas.net>
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.1 $
// +------------------------------------------------------------------------------------------------------+
*/
 
// +------------------------------------------------------------------------------------------------------+
// | ENTETE du PROGRAMME |
// +------------------------------------------------------------------------------------------------------+
 
 
// +------------------------------------------------------------------------------------------------------+
// | CORPS du PROGRAMME |
// +------------------------------------------------------------------------------------------------------+
/** Constante stockant la valeur de la langue par défaut pour l'appli ADAP.*/
define('ADWI_I18N_DEFAUT', GEN_I18N_ID_DEFAUT);
 
// Chemin des fichiers à inclure.
/** Chemin vers la bibliothèque PEAR.*/
define('ADWI_CHEMIN_BIBLIOTHEQUE_PEAR', '');
/** Chemin vers la bibliothèque API.*/
define('ADWI_CHEMIN_BIBLIOTHEQUE_API', GEN_CHEMIN_API);
/** Chemin vers la bibliothèque de Papyrus.*/
define('ADWI_CHEMIN_BIBLIOTHEQUE_GEN', GEN_CHEMIN_BIBLIO);
 
// Chemin vers les dossiers de l'application
/** Chemin vers l'application Admin Auth de Papyrus.*/
define('ADWI_CHEMIN_APPLICATION', GEN_CHEMIN_CLIENT.'integrateur_wikini/');
/** Chemin vers la bibliothèque de l'application Admin Auth de Papyrus.*/
define('ADWI_CHEMIN_BIBLIOTHEQUE', ADWI_CHEMIN_APPLICATION.'bibliotheque/');
/** Chemin vers les fichiers de traduction de l'application Admin Auth de Papyrus.*/
define('ADWI_CHEMIN_LANGUE', ADWI_CHEMIN_APPLICATION.'langues/');
 
 
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.1 2004/12/13 18:07:33 alex
* version initiale
*
*
* +-- Fin du code ----------------------------------------------------------------------------------------+
*/
?>