trig('Permissions mises à jour'); } } if ($p = Post::get('setwperms')) { wiki_apply_perms('admin'); if (wiki_set_perms($n, $perms[0], $p)) { $perms = wiki_get_perms($n); $page->trig('Permissions mises à jour'); } } $wiki_cache = wiki_work_dir().'/cache_'.$n.'.tpl'; $cache_exists = file_exists($wiki_cache); if (Env::get('action') || !$cache_exists) { @unlink($wiki_cache); // we leave pmwiki do whatever it wants and store everything ob_start(); require_once($globals->spoolroot.'/wiki/pmwiki.php'); $wikiAll = ob_get_clean(); // the pmwiki skin we are using (almost empty) has these keywords: $i = strpos($wikiAll, ""); $j = strpos($wikiAll, "", $i); } if (Env::get('action')) { $page->assign('xorg_extra_header', substr($wikiAll, 0, $i)); $wikiAll = substr($wikiAll, $j); } else { if (!$cache_exists) { $wikiAll = substr($wikiAll, $j); wiki_putfile($wiki_cache, $wikiAll); } else { $wikiAll = file_get_contents($wiki_cache); } } $page->assign('perms', $perms); $page->assign('perms_opts', array('public' => 'Public', 'logged' => 'Connecté', 'mdp' => 'Authentifié', 'admin' => 'Admin')); $page->assign('canedit', wiki_may_have_perms($perms[1])); $page->assign('has_perms', wiki_may_have_perms('admin')); $page->assign('wikipage', str_replace('.', '/', $n)); $page->assign('pmwiki', $wikiAll); $page->addCssLink('css/wiki.css'); $page->run(); ?>