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: iw_config.inc.php,v 1.9 2007-04-06 08:40:13 neiluj Exp $
|
24 |
// CVS : $Id: iw_config.inc.php,v 1.10 2007-04-11 08:30:12 neiluj Exp $
|
25 |
/**
|
25 |
/**
|
26 |
* Configuration de l'intégrateur de page Wikini
|
26 |
* Configuration de l'intégrateur de page Wikini
|
27 |
*
|
27 |
*
|
28 |
* Fichier de configuration de l'intégrateur de page Wikini
|
28 |
* Fichier de configuration de l'intégrateur de page Wikini
|
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.9 $ $Date: 2007-04-06 08:40:13 $
|
37 |
*@version $Revision: 1.10 $ $Date: 2007-04-11 08:30:12 $
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
39 |
*/
|
39 |
*/
|
Line 40... |
Line 40... |
40 |
|
40 |
|
41 |
// +------------------------------------------------------------------------------------------------------+
|
41 |
// +------------------------------------------------------------------------------------------------------+
|
Line 127... |
Line 127... |
127 |
|
127 |
|
128 |
/** Constante stockant le chemin du dossier contenant le site Wikini en cours */
|
128 |
/** Constante stockant le chemin du dossier contenant le site Wikini en cours */
|
Line 129... |
Line 129... |
129 |
define('IW_CHEMIN_WIKINI_COURANT_FORMATTER', IW_CHEMIN_WIKINI_COURANT.'formatters'.GEN_SEP);
|
129 |
define('IW_CHEMIN_WIKINI_COURANT_FORMATTER', IW_CHEMIN_WIKINI_COURANT.'formatters'.GEN_SEP);
|
130 |
|
- |
|
- |
|
130 |
|
- |
|
131 |
global $wikini_config_defaut;
|
131 |
global $wikini_config_defaut;
|
132 |
// Ajout dans l'URL générale du Query String wiki spécifique à l'intégrateur
|
132 |
|
133 |
$GLOBALS['_GEN_commun']['url']->addQueryString('wiki', '');
|
133 |
$wikini_config_defaut = array(
|
134 |
$wikini_config_defaut = array(
|
134 |
"wakka_version" => "0.1.1",
|
135 |
"wakka_version" => "0.1.1",
|
135 |
"wikini_version" => "0.4.3",
|
136 |
"wikini_version" => "0.4.3",
|
136 |
'mysql_host' => $config_wikini['bdd_hote'],
|
137 |
'mysql_host' => $config_wikini['bdd_hote'],
|
137 |
'mysql_database' => $config_wikini['bdd_nom'],
|
138 |
'mysql_database' => $config_wikini['bdd_nom'],
|
138 |
'mysql_user' => $config_wikini['bdd_utilisateur'],
|
139 |
'mysql_user' => $config_wikini['bdd_utilisateur'],
|
139 |
'mysql_password' => $config_wikini['bdd_mdp'],
|
140 |
'mysql_password' => $config_wikini['bdd_mdp'],
|
140 |
'table_prefix' => $config_wikini['table_prefix'],
|
141 |
'table_prefix' => $config_wikini['table_prefix'],
|
141 |
'root_page' => $config_wikini['page'],
|
142 |
'root_page' => $config_wikini['page'],
|
142 |
'wakka_name' => $config_wikini['code_alpha_wikini'],
|
143 |
'wakka_name' => $config_wikini['code_alpha_wikini'],
|
143 |
'base_url' => str_replace('&', '&', $GLOBALS['_GEN_commun']['url']->getUrl()).'&wiki=',
|
144 |
'base_url' => str_replace('&', '&', $GLOBALS['_GEN_commun']['url']->getUrl()),
|
144 |
'rewrite_mode' => '0',
|
145 |
'rewrite_mode' => '0',
|
145 |
'meta_keywords' => '',
|
146 |
'meta_keywords' => '',
|
146 |
'meta_description' => '',
|
147 |
'meta_description' => '',
|
Line 153... |
Line 154... |
153 |
'pages_purge_time' => 90,
|
154 |
'pages_purge_time' => 90,
|
154 |
'default_write_acl' => '*',
|
155 |
'default_write_acl' => '*',
|
155 |
'default_read_acl' => '*',
|
156 |
'default_read_acl' => '*',
|
156 |
'default_comment_acl' => '*',
|
157 |
'default_comment_acl' => '*',
|
157 |
'preview_before_save' => '0');
|
158 |
'preview_before_save' => '0');
|
158 |
|
- |
|
- |
|
159 |
// Suppression de l'URL générale du Query String wiki spécifique à l'intégrateur
|
- |
|
160 |
$GLOBALS['_GEN_commun']['url']->removeQueryString('wiki', '');
|
159 |
// +------------------------------------------------------------------------------------------------------+
|
161 |
// +------------------------------------------------------------------------------------------------------+
|
160 |
// | PIED du PROGRAMME |
|
162 |
// | PIED du PROGRAMME |
|
161 |
// +------------------------------------------------------------------------------------------------------+
|
163 |
// +------------------------------------------------------------------------------------------------------+
|
Line 162... |
Line 164... |
162 |
|
164 |
|
163 |
|
165 |
|
164 |
|
166 |
|
- |
|
167 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
- |
|
168 |
*
|
- |
|
169 |
* $Log: not supported by cvs2svn $
|
165 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
170 |
* Revision 1.8 2006/11/09 17:50:41 jp_milcent
|
166 |
*
|
171 |
* Compatibilité avec les nouveaux permaliens de Papyrus.
|
167 |
* $Log: not supported by cvs2svn $
|
172 |
*
|
168 |
* Revision 1.7 2005/09/14 09:12:15 ddelon
|
173 |
* Revision 1.7 2005/09/14 09:12:15 ddelon
|
169 |
* Integrateur Wikini et administration des Wikini
|
174 |
* Integrateur Wikini et administration des Wikini
|