545 |
ddelon |
1 |
<?php
|
581 |
ddelon |
2 |
/*vim: set expandtab tabstop=4 shiftwidth=4: */
|
545 |
ddelon |
3 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
4 |
// | PHP version 4.1 |
|
|
|
5 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
6 |
// | Copyright (C) 2005 Tela Botanica (accueil@tela-botanica.org) |
|
|
|
7 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
8 |
// | This file is part of Integrateur Wikini. |
|
|
|
9 |
// | |
|
|
|
10 |
// | Foobar is free software; you can redistribute it and/or modify |
|
|
|
11 |
// | it under the terms of the GNU General Public License as published by |
|
|
|
12 |
// | the Free Software Foundation; either version 2 of the License, or |
|
|
|
13 |
// | (at your option) any later version. |
|
|
|
14 |
// | |
|
|
|
15 |
// | Foobar is distributed in the hope that it will be useful, |
|
|
|
16 |
// | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
|
17 |
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
|
18 |
// | GNU General Public License for more details. |
|
|
|
19 |
// | |
|
|
|
20 |
// | You should have received a copy of the GNU General Public License |
|
|
|
21 |
// | along with Foobar; if not, write to the Free Software |
|
|
|
22 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
|
|
23 |
// +------------------------------------------------------------------------------------------------------+
|
1696 |
ddelon |
24 |
// CVS : $Id: iw_integrateur.fonct.php,v 1.19.6.1 2007-11-19 10:05:22 ddelon Exp $
|
545 |
ddelon |
25 |
/**
|
|
|
26 |
* Fonctions de l'integrateur de page Wikini
|
|
|
27 |
*
|
|
|
28 |
* Application permettant d'intégrer des pages wikini dans Papyrus.
|
|
|
29 |
*
|
|
|
30 |
*@package IntegrateurWikini
|
|
|
31 |
//Auteur original :
|
|
|
32 |
*@author David Delon <david.delon@clapas.net>
|
|
|
33 |
//Autres auteurs :
|
|
|
34 |
*@author Aucun
|
|
|
35 |
*@copyright Tela-Botanica 2000-2004
|
1696 |
ddelon |
36 |
*@version $Revision: 1.19.6.1 $ $Date: 2007-11-19 10:05:22 $
|
545 |
ddelon |
37 |
*
|
|
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
39 |
// | ENTETE du PROGRAMME |
|
|
|
40 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
41 |
|
|
|
42 |
|
|
|
43 |
|
|
|
44 |
|
|
|
45 |
/** Inclusion de la classe PEAR de gestion des URL. */
|
|
|
46 |
|
|
|
47 |
$GLOBALS['_PAPYRUS_']['erreur']->setActive(0);
|
|
|
48 |
|
832 |
florian |
49 |
require_once PAP_CHEMIN_API_PEAR.'Net/URL.php';
|
545 |
ddelon |
50 |
|
|
|
51 |
// TODO : un seul fichier de configuration ?
|
|
|
52 |
/** Inclusion du fichier de configuration de cette application.*/
|
860 |
ddelon |
53 |
require_once 'client/integrateur_wikini/configuration/adwi_configuration.inc.php';
|
545 |
ddelon |
54 |
|
|
|
55 |
require_once ADWI_CHEMIN_BIBLIOTHEQUE.'adwi_wikini.fonct.php';
|
|
|
56 |
|
|
|
57 |
/** Inclusion du fichier de configuration général de IntegrateurWikini.*/
|
|
|
58 |
require_once 'client'.GEN_SEP.'integrateur_wikini'.GEN_SEP.'configuration'.GEN_SEP.'iw_config.inc.php';
|
|
|
59 |
|
|
|
60 |
/** Inclusion du fichier permettant d'encoder du texte mais pas les balises XHTML.*/
|
|
|
61 |
require_once IW_CHEMIN_BIBLIO.'iw_encodage.fonct.php';
|
|
|
62 |
/** Inclusion du fichier permettant d'inclure les données dans du XHTML.*/
|
|
|
63 |
require_once IW_CHEMIN_BIBLIO.'iw_affichage_xhtml.fonct.php';
|
|
|
64 |
|
|
|
65 |
global $wikini_config_defaut;
|
|
|
66 |
global $wiki;
|
|
|
67 |
global $wiki_p;
|
|
|
68 |
|
|
|
69 |
// $_REQUEST['wiki'] est obligatoire, car wakka.php envoie un redirect si non detecté, avec perte de tout l'environnement !
|
|
|
70 |
|
|
|
71 |
if ( ! isset( $_REQUEST['wiki'] ) ) {
|
|
|
72 |
$_REQUEST['wiki'] = $wikini_config_defaut['root_page'];
|
|
|
73 |
}
|
|
|
74 |
|
|
|
75 |
$server=$_SERVER['PHP_SELF'];
|
|
|
76 |
$_SERVER['PHP_SELF']="wakka.php";
|
|
|
77 |
|
|
|
78 |
// Utilise le wakkaconfig de la racine ...
|
|
|
79 |
// TODO : un wiki par défaut pour chaque papyrus à l'installation de Papyrus
|
|
|
80 |
// TODO : verifier bon dimensionnement des champs et clef de la table papyrus_wiki
|
|
|
81 |
// TODO : creation des tables par defaut à l'installation d'un wikini
|
|
|
82 |
// TODO : Fusion des fichiers de configuration ?
|
|
|
83 |
|
898 |
alexandre_ |
84 |
//echo IW_CHEMIN_WIKINI_COURANT.'wakka.php';
|
|
|
85 |
if (!file_exists(IW_CHEMIN_WIKINI_COURANT.'wakka.php')) {
|
|
|
86 |
if (GEN_DEBOGAGE) {
|
|
|
87 |
$GLOBALS['_GEN_commun']['debogage_info'] .=
|
|
|
88 |
'ERREUR Papyrus : le fichier '.IW_CHEMIN_WIKINI_COURANT.'wakka.php n\'existe pas.<br />'.
|
|
|
89 |
'Identifiant : '. $id_fichier .'<br />'.
|
|
|
90 |
'Ligne n° : '. __LINE__ .'<br />'.
|
|
|
91 |
'Fichier : '. __FILE__;
|
|
|
92 |
}
|
|
|
93 |
return ;
|
|
|
94 |
}
|
545 |
ddelon |
95 |
ob_start();
|
|
|
96 |
include_once IW_CHEMIN_WIKINI_COURANT.'wakka.php';
|
556 |
ddelon |
97 |
include_once(IW_CHEMIN_WIKINI_COURANT."/formatters/tableaux.php");
|
|
|
98 |
include_once(IW_CHEMIN_WIKINI_COURANT."/actions/attach.class.php");
|
545 |
ddelon |
99 |
|
|
|
100 |
ob_end_clean();
|
|
|
101 |
$_SERVER['PHP_SELF']=$server;
|
|
|
102 |
|
|
|
103 |
|
|
|
104 |
// On surcharge la classe Wiki pour en faire ce qu'on en veut
|
|
|
105 |
Class Wiki_Papyrus extends Wiki {
|
581 |
ddelon |
106 |
|
|
|
107 |
|
545 |
ddelon |
108 |
function Header() {
|
581 |
ddelon |
109 |
|
545 |
ddelon |
110 |
return;
|
581 |
ddelon |
111 |
}
|
|
|
112 |
|
545 |
ddelon |
113 |
function Footer() {
|
580 |
ddelon |
114 |
echo "<div class=\"footer\">";
|
|
|
115 |
echo $this->HasAccess("write") ? "<a href=\"".$this->href("edit")."\" title=\"Cliquez pour modifier cette page.\">Modifier cette page</a> ::\n" : "";
|
|
|
116 |
echo $this->GetPageTime() ? "<a href=\"".$this->href("revisions")."\" title=\"Cliquez pour voir les dernières modifications sur cette page.\">".$this->GetPageTime()."</a> ::\n" : "";
|
|
|
117 |
// if this page exists
|
|
|
118 |
if ($this->page)
|
|
|
119 |
{
|
|
|
120 |
// if owner is current user
|
|
|
121 |
if ($this->UserIsOwner())
|
|
|
122 |
{
|
581 |
ddelon |
123 |
echo
|
580 |
ddelon |
124 |
"Propriétaire : vous :: \n",
|
|
|
125 |
"<a href=\"",$this->href("acls")."\" title=\"Cliquez pour modifer les permissions de cette page.\">Éditer permissions</a> :: \n",
|
|
|
126 |
"<a href=\"",$this->href("deletepage")."\">Supprimer</a> :: \n";
|
|
|
127 |
}
|
|
|
128 |
else
|
|
|
129 |
{
|
|
|
130 |
if ($owner = $this->GetPageOwner())
|
|
|
131 |
{
|
|
|
132 |
echo "Propriétaire : ",$this->Format($owner);
|
|
|
133 |
}
|
|
|
134 |
else
|
|
|
135 |
{
|
|
|
136 |
echo "Pas de propriétaire ";
|
|
|
137 |
echo ($this->GetUser() ? "(<a href=\"".$this->href("claim")."\">Appropriation</a>)" : "");
|
|
|
138 |
}
|
|
|
139 |
echo " :: \n";
|
|
|
140 |
}
|
|
|
141 |
}
|
|
|
142 |
echo "Vous êtes ";
|
|
|
143 |
echo $this->Format($this->GetUserName());
|
|
|
144 |
echo "</div>";
|
581 |
ddelon |
145 |
|
545 |
ddelon |
146 |
}
|
581 |
ddelon |
147 |
|
545 |
ddelon |
148 |
function FormOpen($method = "", $tag = "", $formMethod = "post") {
|
581 |
ddelon |
149 |
|
|
|
150 |
// Le diff ne fonctionne pas avec la methode get dans papyrus. On surcharge avec du post.
|
|
|
151 |
|
545 |
ddelon |
152 |
if (($method=="diff") && $formMethod=="get") {
|
581 |
ddelon |
153 |
$formMethod="post";
|
545 |
ddelon |
154 |
}
|
581 |
ddelon |
155 |
|
545 |
ddelon |
156 |
if ($method=="edit") {
|
|
|
157 |
$result = "<form id=\"ACEditor\" name=\"ACEditor\" action=\"".$this->href($method, $tag)."\" method=\"".$formMethod."\">\n";
|
|
|
158 |
return $result;
|
|
|
159 |
}
|
581 |
ddelon |
160 |
|
545 |
ddelon |
161 |
return parent::FormOpen($method,$tag, $formMethod);
|
581 |
ddelon |
162 |
|
545 |
ddelon |
163 |
}
|
|
|
164 |
// Detournement des handlers : comme ca on peut faire ce que l'on veut ....
|
|
|
165 |
function Method($method) {
|
581 |
ddelon |
166 |
|
690 |
ddelon |
167 |
if ($method=="xml") {
|
|
|
168 |
header("Content-type: text/xml");
|
|
|
169 |
if ($pages = $this->LoadRecentlyChanged(50)) {
|
|
|
170 |
|
|
|
171 |
$link=ereg_replace('&','&',$this->Href());
|
|
|
172 |
$output = "<?xml version=\"1.0\" encoding=\"iso-8859-1\" ?>\n";
|
|
|
173 |
$output .= '<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">' . "\n";
|
|
|
174 |
$output .= "<channel>\n";
|
|
|
175 |
$output .= "<title> Derniers changements sur ". $this->config["wakka_name"] . "</title>\n";
|
|
|
176 |
$output .= "<link>" . $link . "</link>\n";
|
|
|
177 |
$output .= "<description> Derniers changements sur " . $this->config["wakka_name"] . " </description>\n";
|
|
|
178 |
$output .= "<language>fr</language>\n";
|
|
|
179 |
$output .= '<generator>WikiNi ' . WIKINI_VERSION . "</generator>\n";
|
|
|
180 |
foreach ($pages as $i => $page)
|
|
|
181 |
{
|
|
|
182 |
$output .= "<item>\n";
|
|
|
183 |
$output .= "<title>" . $page["tag"] . "</title>\n";
|
|
|
184 |
$output .= '<dc:creator>' . $page["user"] . "</dc:creator>\n";
|
|
|
185 |
$output .= '<pubDate>' . date("r", strtotime($page['time'])) . "</pubDate>\n";
|
|
|
186 |
$output .= "<description> Modification de " . $page["tag"] . " --- par " .$page["user"] /* . " le " . $day ." - ". $hh .":". $mm */ . "</description>\n";
|
|
|
187 |
$link=ereg_replace('&','&',$this->Href("",$page["tag"]));
|
|
|
188 |
$output .= "<link>" . $link . "&time=" . rawurlencode($page["time"]) . "</link>\n";
|
|
|
189 |
$output .= "</item>\n";
|
|
|
190 |
}
|
|
|
191 |
$output .= "</channel>\n";
|
|
|
192 |
$output .= "</rss>\n";
|
|
|
193 |
echo $output ;
|
|
|
194 |
|
|
|
195 |
}
|
|
|
196 |
exit;
|
|
|
197 |
return;
|
|
|
198 |
}
|
|
|
199 |
|
545 |
ddelon |
200 |
if ($method=="edit") {
|
920 |
ddelon |
201 |
|
|
|
202 |
if ($this->HasAccess("write") && $this->HasAccess("read")) {
|
|
|
203 |
|
|
|
204 |
$result='';
|
|
|
205 |
|
|
|
206 |
if ($_POST) {
|
|
|
207 |
if ($_POST["submit"] == "Sauver") {
|
1696 |
ddelon |
208 |
|
|
|
209 |
require_once(ADWI_CHEMIN_BIBLIOTHEQUE.'/hashcash/secret/wp-hashcash.lib');
|
|
|
210 |
if($_POST["hashcash_value"] != hashcash_field_value()) {
|
|
|
211 |
$this->SetMessage("Cette page n\'a pas été enregistrée car ce wiki pense que vous etes un robot !");
|
|
|
212 |
$this->Redirect($this->href());
|
|
|
213 |
}
|
|
|
214 |
|
920 |
ddelon |
215 |
// check for overwriting
|
|
|
216 |
if ($this->page) {
|
|
|
217 |
if ($this->page["id"] != $_POST["previous"]) {
|
|
|
218 |
$error = "ALERTE : ".
|
|
|
219 |
"Cette page a été modifiée par quelqu'un d'autre pendant que vous l'éditiez.<br />\n".
|
|
|
220 |
"Veuillez copier vos changements et rééditer cette page.\n";
|
|
|
221 |
}
|
545 |
ddelon |
222 |
}
|
920 |
ddelon |
223 |
// store
|
|
|
224 |
if (!$error) {
|
|
|
225 |
$body = str_replace("\r", "", $_POST["body"]);
|
|
|
226 |
// test si la nouvelle page est differente de la précédente
|
|
|
227 |
if(rtrim($body)==rtrim($this->page["body"])) {
|
|
|
228 |
$this->SetMessage("Cette page n\'a pas été enregistrée car elle n\'a subi aucune modification.");
|
|
|
229 |
$this->Redirect($this->href());
|
|
|
230 |
}
|
|
|
231 |
|
|
|
232 |
// add page (revisions)
|
|
|
233 |
$this->SavePage($this->tag, $body);
|
|
|
234 |
|
|
|
235 |
// now we render it internally so we can write the updated link table.
|
|
|
236 |
$this->ClearLinkTable();
|
|
|
237 |
$this->StartLinkTracking();
|
|
|
238 |
$dummy = $this->Header();
|
|
|
239 |
$dummy .= $this->Format($body);
|
|
|
240 |
$dummy .= $this->Footer();
|
|
|
241 |
$this->StopLinkTracking();
|
|
|
242 |
$this->WriteLinkTable();
|
|
|
243 |
$this->ClearLinkTable();
|
|
|
244 |
|
|
|
245 |
// forward
|
545 |
ddelon |
246 |
$this->Redirect($this->href());
|
|
|
247 |
}
|
|
|
248 |
}
|
|
|
249 |
}
|
920 |
ddelon |
250 |
|
|
|
251 |
// fetch fields
|
|
|
252 |
if (!$previous = $_POST["previous"]) $previous = $this->page["id"];
|
|
|
253 |
if (!$body = $_POST["body"]) $body = $this->page["body"];
|
|
|
254 |
|
|
|
255 |
// preview?
|
|
|
256 |
if ($_POST["submit"] == "Aperçu")
|
|
|
257 |
{
|
|
|
258 |
$result .=
|
|
|
259 |
"<div class=\"prev_alert\"><strong>Aperçu</strong></div>\n".
|
|
|
260 |
$this->Format($body)."\n\n".
|
|
|
261 |
$this->FormOpen("edit").
|
|
|
262 |
"<input type=\"hidden\" name=\"previous\" value=\"".$previous."\" />\n".
|
|
|
263 |
"<input type=\"hidden\" name=\"body\" value=\"".htmlentities($body)."\" />\n".
|
|
|
264 |
"<br />\n".
|
|
|
265 |
"<input name=\"submit\" type=\"submit\" value=\"Sauver\" accesskey=\"s\" />\n".
|
|
|
266 |
"<input name=\"submit\" type=\"submit\" value=\"Rééditer \" accesskey=\"p\" />\n".
|
|
|
267 |
"<input type=\"button\" value=\"Annulation\" onclick=\"document.location='".$this->href("")."';\" />\n".
|
|
|
268 |
$this->FormClose()."\n";
|
|
|
269 |
return $result;
|
|
|
270 |
}
|
|
|
271 |
else
|
|
|
272 |
{
|
1696 |
ddelon |
273 |
|
|
|
274 |
// Edition
|
|
|
275 |
|
|
|
276 |
require_once(ADWI_CHEMIN_BIBLIOTHEQUE.'/hashcash/secret/wp-hashcash.lib');
|
|
|
277 |
|
|
|
278 |
// UPDATE RANDOM SECRET
|
|
|
279 |
$curr = @file_get_contents(HASHCASH_SECRET_FILE);
|
|
|
280 |
if(empty($curr) || (time() - @filemtime(HASHCASH_SECRET_FILE)) > HASHCASH_REFRESH){
|
|
|
281 |
|
|
|
282 |
// update our secret
|
|
|
283 |
$fp = fopen(HASHCASH_SECRET_FILE, 'w');
|
|
|
284 |
|
|
|
285 |
if(@flock($fp, LOCK_EX)){
|
|
|
286 |
fwrite($fp, rand(21474836, 2126008810));
|
|
|
287 |
@flock($fp, LOCK_UN);
|
|
|
288 |
}
|
|
|
289 |
|
|
|
290 |
fclose($fp);
|
|
|
291 |
|
|
|
292 |
}
|
|
|
293 |
|
|
|
294 |
if (isset($GLOBALS['_GEN_commun']['url_sauvegarde']) && ($GLOBALS['_GEN_commun']['url_sauvegarde']!='')) {
|
|
|
295 |
$a=parse_url(str_replace('&', '&', $GLOBALS['_GEN_commun']['url_sauvegarde']->getUrl()));
|
|
|
296 |
}
|
|
|
297 |
|
|
|
298 |
else {
|
|
|
299 |
$a = parse_url($this->config['base_url']);
|
|
|
300 |
}
|
|
|
301 |
|
|
|
302 |
$siteurl = ($a['scheme'].'://'.$a['host'].dirname($a['path']));
|
|
|
303 |
|
|
|
304 |
|
|
|
305 |
$ChampsHashcash =
|
|
|
306 |
'<link rel="powered" title="Elliott Back\'s Antispam" href="http://elliottback.com" />'.
|
|
|
307 |
'<script type="text/javascript" src="' . $siteurl . '/client/integrateur_wikini/bibliotheque/hashcash/wp-hashcash-js.php?siteurl='.$siteurl.'"></script>';
|
|
|
308 |
|
920 |
ddelon |
309 |
$ACbuttonsBar='';
|
|
|
310 |
require_once(IW_CHEMIN_BIBLIO_ACEDITOR."ACeditor.buttonsBar.php");
|
|
|
311 |
|
|
|
312 |
$result .=
|
545 |
ddelon |
313 |
$this->FormOpen("edit").
|
920 |
ddelon |
314 |
"<input type=\"hidden\" name=\"previous\" value=\"".$previous."\" />\n".$ACbuttonsBar.
|
|
|
315 |
"<textarea onkeydown=\"fKeyDown()\" name=\"body\" cols=\"60\" rows=\"40\" wrap=\"soft\" class=\"edit\">\n".
|
|
|
316 |
htmlspecialchars($body).
|
|
|
317 |
"\n</textarea><br />\n".'<div class="boutons_wiki">'.
|
1696 |
ddelon |
318 |
($this->config["preview_before_save"] ? "" : $ChampsHashcash."<input name=\"submit\" type=\"submit\" value=\"Sauver\" accesskey=\"s\" />\n").
|
920 |
ddelon |
319 |
"<input name=\"submit\" type=\"submit\" value=\"Aperçu\" accesskey=\"p\" />\n".
|
|
|
320 |
"<input type=\"button\" value=\"Annulation\" onclick=\"document.location='".$this->href("")."';\" /></div>\n".
|
|
|
321 |
$this->FormClose();
|
|
|
322 |
|
|
|
323 |
return $result;
|
|
|
324 |
}
|
|
|
325 |
|
545 |
ddelon |
326 |
}
|
920 |
ddelon |
327 |
else {
|
|
|
328 |
echo "<i>Vous n'avez pas accès en écriture à cette page !</i>\n";
|
|
|
329 |
|
545 |
ddelon |
330 |
}
|
|
|
331 |
}
|
|
|
332 |
else {
|
|
|
333 |
return parent::Method($method);
|
|
|
334 |
}
|
|
|
335 |
}
|
581 |
ddelon |
336 |
|
|
|
337 |
|
|
|
338 |
// Surcharge Format a cause probleme de chemin.
|
|
|
339 |
|
545 |
ddelon |
340 |
function Format($text, $formatter = "wakka") {
|
581 |
ddelon |
341 |
return $this->IncludeBuffered(IW_CHEMIN_WIKINI_COURANT_FORMATTER.$formatter.".php", "<i>Impossible de trouver le formateur \"$formatter\"</i>", compact("text"));
|
545 |
ddelon |
342 |
}
|
581 |
ddelon |
343 |
|
|
|
344 |
|
|
|
345 |
// Identification
|
|
|
346 |
|
584 |
ddelon |
347 |
function SetUser($user, $remember) {
|
|
|
348 |
// Appel à partir de Papyrus
|
920 |
ddelon |
349 |
if ($user=='initwiki') {
|
584 |
ddelon |
350 |
$remember=1;
|
596 |
ddelon |
351 |
$wiki_prenom=$this->versChatMot($GLOBALS['_GEN_commun']['pear_auth']->getAuthData($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_personne_prenom));
|
|
|
352 |
$wiki_nom=$this->versChatMot($GLOBALS['_GEN_commun']['pear_auth']->getAuthData($GLOBALS['_GEN_commun']['info_auth_bdd']->chp_personne_nom));
|
920 |
ddelon |
353 |
$_SESSION["user"]=array("name"=>$wiki_prenom.$wiki_nom,"password"=>"wikini","changescount"=> 100);
|
584 |
ddelon |
354 |
$this->SetPersistentCookie("name", $user["name"], $remember);
|
|
|
355 |
$this->SetPersistentCookie("password", $user["password"], $remember);
|
|
|
356 |
$this->SetPersistentCookie("remember", $remember, $remember);
|
|
|
357 |
}
|
|
|
358 |
else {
|
|
|
359 |
parent::Setuser($user,$remember);
|
|
|
360 |
}
|
|
|
361 |
|
580 |
ddelon |
362 |
}
|
581 |
ddelon |
363 |
|
677 |
ddelon |
364 |
function LoadUser($name, $password = 0) {
|
|
|
365 |
return true;
|
|
|
366 |
}
|
|
|
367 |
|
596 |
ddelon |
368 |
function LogoutUser() {
|
|
|
369 |
$_SESSION["user"]="";
|
|
|
370 |
$this->DeleteCookie("remember");
|
|
|
371 |
parent::LogoutUser();
|
|
|
372 |
}
|
677 |
ddelon |
373 |
|
|
|
374 |
|
581 |
ddelon |
375 |
|
596 |
ddelon |
376 |
function versChatMot($entree) {
|
|
|
377 |
$sortie = strtolower(trim(strtr($entree, "àâéêèëîïôöùûüç-", "aaeeeeiioouuuc ")));
|
|
|
378 |
$sortie = ucwords($sortie);
|
|
|
379 |
$sortie = str_replace(" ", "",$sortie);
|
|
|
380 |
return $sortie;
|
|
|
381 |
}
|
|
|
382 |
|
545 |
ddelon |
383 |
}
|
|
|
384 |
|
581 |
ddelon |
385 |
|
|
|
386 |
|
545 |
ddelon |
387 |
// Appel du fichier de traduction des textes de l'application Integrateur Wikini
|
|
|
388 |
if (file_exists(IW_CHEMIN_LANGUES.'iw_langue_'.IW_I18N.'.inc.php')) {
|
|
|
389 |
/** Inclusion du fichier de traduction de l'application Integrateur Wikini. */
|
|
|
390 |
include_once IW_CHEMIN_LANGUES.'iw_langue_'.IW_I18N.'.inc.php';
|
|
|
391 |
} else {
|
|
|
392 |
/** Inclusion du fichier de traduction fr par défaut. */
|
|
|
393 |
include_once IW_CHEMIN_LANGUES.'iw_langue_fr.inc.php';
|
|
|
394 |
}
|
|
|
395 |
|
|
|
396 |
$GLOBALS['_PAPYRUS_']['erreur']->setActive(1);
|
|
|
397 |
/**
|
581 |
ddelon |
398 |
*
|
545 |
ddelon |
399 |
* Fonction afficherPageMenuWikini()
|
581 |
ddelon |
400 |
*
|
545 |
ddelon |
401 |
* Renvoie le contenu de la page Menu de Wikini
|
|
|
402 |
*
|
|
|
403 |
* @return string
|
|
|
404 |
* @access public
|
|
|
405 |
*/
|
581 |
ddelon |
406 |
|
545 |
ddelon |
407 |
function afficherPageMenuWikini()
|
|
|
408 |
{
|
581 |
ddelon |
409 |
|
545 |
ddelon |
410 |
$GLOBALS['_PAPYRUS_']['erreur']->setActive(0);
|
|
|
411 |
|
|
|
412 |
global $wiki;
|
|
|
413 |
global $wikini_config_defaut;
|
|
|
414 |
$sortie='';
|
|
|
415 |
$wakkaConfig = $GLOBALS['wikini_config_defaut'];
|
898 |
alexandre_ |
416 |
if (!class_exists('Wiki_Papyrus')) return ;
|
545 |
ddelon |
417 |
$wiki = new Wiki_Papyrus($wakkaConfig);
|
|
|
418 |
|
|
|
419 |
// Suppression des slash.
|
|
|
420 |
$_REQUEST['wiki'] = preg_replace("/^\//", '', $_REQUEST['wiki']);
|
|
|
421 |
|
|
|
422 |
// split into page/method
|
832 |
florian |
423 |
$matches='';
|
545 |
ddelon |
424 |
if ( preg_match( "#^(.+?)/(.*)$#", $_REQUEST['wiki'], $matches ) ) {
|
|
|
425 |
list(, $page, $method) = $matches;
|
|
|
426 |
} else if ( preg_match( "#^(.*)$#", $_REQUEST['wiki'], $matches ) ) {
|
|
|
427 |
list(, $page) = $matches;
|
|
|
428 |
}
|
|
|
429 |
|
|
|
430 |
$server=$_SERVER['PHP_SELF'];
|
|
|
431 |
$_SERVER['PHP_SELF']="wakka.php";
|
581 |
ddelon |
432 |
|
545 |
ddelon |
433 |
$contenu=$wiki->LoadPage("PageMenu");
|
581 |
ddelon |
434 |
|
585 |
ddelon |
435 |
$sortie.="<div id=\"menu_wikini\">";
|
581 |
ddelon |
436 |
$sortie.=$wiki->Format($contenu['body']);
|
585 |
ddelon |
437 |
$sortie.="</div>";
|
545 |
ddelon |
438 |
|
|
|
439 |
$_SERVER['PHP_SELF']=$server;
|
581 |
ddelon |
440 |
|
545 |
ddelon |
441 |
$GLOBALS['_PAPYRUS_']['erreur']->setActive(1);
|
581 |
ddelon |
442 |
|
545 |
ddelon |
443 |
return $sortie;
|
581 |
ddelon |
444 |
|
|
|
445 |
}
|
|
|
446 |
|
|
|
447 |
|
545 |
ddelon |
448 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
449 |
// | CORPS du PROGRAMME |
|
|
|
450 |
// +------------------------------------------------------------------------------------------------------+
|
|
|
451 |
/** Fonction afficherPageWikini() - Fonction appelé par le gestionnaire Papyrus.
|
|
|
452 |
*
|
|
|
453 |
* Elle retourne le contenu de l'application.
|
|
|
454 |
*
|
|
|
455 |
* @return string du code XHTML correspondant au contenu renvoyé par l'application.
|
|
|
456 |
*/
|
|
|
457 |
function afficherPageWikini()
|
|
|
458 |
{
|
920 |
ddelon |
459 |
|
545 |
ddelon |
460 |
|
|
|
461 |
$GLOBALS['_PAPYRUS_']['erreur']->setActive(0);
|
581 |
ddelon |
462 |
|
545 |
ddelon |
463 |
// Ajout d'une feuille de style externe
|
|
|
464 |
GEN_stockerStyleExterne ('wikini', 'client/integrateur_wikini/presentations/styles/wikini.css') ;
|
581 |
ddelon |
465 |
|
545 |
ddelon |
466 |
global $wiki;
|
|
|
467 |
global $wikini_config_defaut;
|
|
|
468 |
$sortie='';
|
|
|
469 |
$wakkaConfig = $GLOBALS['wikini_config_defaut'];
|
898 |
alexandre_ |
470 |
if (!class_exists ('Wiki_Papyrus')) return ;
|
545 |
ddelon |
471 |
$wiki = new Wiki_Papyrus($wakkaConfig);
|
|
|
472 |
|
581 |
ddelon |
473 |
if ($GLOBALS['_GEN_commun']['pear_auth']->checkAuth()) {
|
921 |
ddelon |
474 |
// if (!isset($_SESSION["user"]) || ($_SESSION["user"]=="")) {
|
920 |
ddelon |
475 |
$wiki->SetUser('initwiki');
|
921 |
ddelon |
476 |
// }
|
580 |
ddelon |
477 |
}
|
|
|
478 |
else {
|
|
|
479 |
$wiki->LogoutUser();
|
|
|
480 |
}
|
581 |
ddelon |
481 |
|
545 |
ddelon |
482 |
// Gestion de la variable de session "linktracking"
|
|
|
483 |
if ( ! isset( $_SESSION['linktracking'] ) ) {
|
|
|
484 |
$_SESSION['linktracking'] = 1;
|
|
|
485 |
}
|
|
|
486 |
|
|
|
487 |
// Suppression des slash.
|
|
|
488 |
$_REQUEST['wiki'] = preg_replace("/^\//", '', $_REQUEST['wiki']);
|
|
|
489 |
|
|
|
490 |
// split into page/method
|
832 |
florian |
491 |
$matches='';
|
545 |
ddelon |
492 |
if ( preg_match( "#^(.+?)/(.*)$#", $_REQUEST['wiki'], $matches ) ) {
|
|
|
493 |
list(, $page, $method) = $matches;
|
|
|
494 |
} else if ( preg_match( "#^(.*)$#", $_REQUEST['wiki'], $matches ) ) {
|
|
|
495 |
list(, $page) = $matches;
|
|
|
496 |
}
|
581 |
ddelon |
497 |
|
545 |
ddelon |
498 |
// Vérification de la méthode d'affichage employée!
|
|
|
499 |
if ( ! isset( $method ) ) {
|
|
|
500 |
$method = '';
|
|
|
501 |
}
|
581 |
ddelon |
502 |
|
545 |
ddelon |
503 |
//Récupération du contenu de la page Wikini
|
581 |
ddelon |
504 |
|
545 |
ddelon |
505 |
ob_start();
|
581 |
ddelon |
506 |
|
545 |
ddelon |
507 |
$server=$_SERVER['PHP_SELF'];
|
|
|
508 |
$_SERVER['PHP_SELF']="wakka.php";
|
581 |
ddelon |
509 |
|
545 |
ddelon |
510 |
$wiki->Run($page, $method);
|
581 |
ddelon |
511 |
|
545 |
ddelon |
512 |
$_SERVER['PHP_SELF']=$server;
|
581 |
ddelon |
513 |
|
545 |
ddelon |
514 |
$sortie.= ob_get_contents();
|
|
|
515 |
ob_end_clean();
|
|
|
516 |
|
|
|
517 |
$GLOBALS['_PAPYRUS_']['erreur']->setActive(1);
|
|
|
518 |
|
676 |
ddelon |
519 |
if ($method!="edit") {
|
|
|
520 |
return remplacerEntiteHTLM("<script type=\"text/javascript\" src=\"".IW_CHEMIN_BIBLIO_ACEDITOR."ACeditor.js\"></script><div id=\"wikini_page\" ondblclick=\"document.location='".$wiki->href("edit")."';"."\">"."\n".$sortie.'</div>'."\n");
|
|
|
521 |
}
|
|
|
522 |
else {
|
|
|
523 |
return remplacerEntiteHTLM("<script type=\"text/javascript\" src=\"".IW_CHEMIN_BIBLIO_ACEDITOR."ACeditor.js\"></script><div id=\"wikini_page\">"."\n".$sortie.'</div>'."\n");
|
|
|
524 |
}
|
690 |
ddelon |
525 |
|
|
|
526 |
|
545 |
ddelon |
527 |
}
|
|
|
528 |
|
|
|
529 |
?>
|