Split Events into 2 modules (events and newsletter)
[platal.git] / htdocs / xorg.php
CommitLineData
b62f8858 1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2006 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
bf6f6356 22// $GLOBALS['IS_XNET_SITE'] = true;
23
e9e9306b 24require_once dirname(__FILE__).'/../include/xorg.inc.php';
b62f8858 25
b647fb5f 26if (!($path = Env::v('n')) || ($path{0} < 'A' || $path{0} > 'Z')) {
27472b85 27
28 $platal = new Platal('auth', 'banana', 'carnet', 'email', 'events',
29 'geoloc', 'lists', 'marketing', 'payment', 'platal',
e2efba7d 30 'profile', 'register', 'search', 'stats', 'admin',
31 'newsletter');
27472b85 32 $platal->run();
33
34 exit;
35}
36
37/*** WIKI CODE ***/
38
39require_once 'wiki.inc.php';
40
41$n = wiki_pagename();
42if (!$n) {
43 pl_redirect('');
44}
45
8b1f8e12 46new_skinned_page('core/wiki.tpl');
27472b85 47$perms = wiki_get_perms($n);
48
fbc1199f 49if (Env::v('display') == 'light') {
50 $page->assign('simple', true);
51}
52
27472b85 53switch (Env::v('action')) {
54 case '':
55 wiki_apply_perms($perms[0]);
56 break;
57
58 case 'edit':
59 wiki_apply_perms($perms[1]);
60 break;
61
62 default:
63 wiki_apply_perms('admin');
64 break;
65}
66
67if ($p = Post::v('setrperms')) {
68 wiki_apply_perms('admin');
69 if (wiki_set_perms($n, $p, $perms[1])) {
70 $perms = wiki_get_perms($n);
f517fe56 71 $page->trig('Permissions mises à jour');
27472b85 72 }
73}
74
75if ($p = Post::v('setwperms')) {
76 wiki_apply_perms('admin');
77 if (wiki_set_perms($n, $perms[0], $p)) {
78 $perms = wiki_get_perms($n);
f517fe56 79 $page->trig('Permissions mises à jour');
27472b85 80 }
81}
82
83$wiki_cache = wiki_work_dir().'/cache_'.$n.'.tpl';
84$cache_exists = file_exists($wiki_cache);
85
86if (Env::v('action') || !$cache_exists) {
87 @unlink($wiki_cache);
88
89 // we leave pmwiki do whatever it wants and store everything
90 ob_start();
91 require_once($globals->spoolroot.'/wiki/pmwiki.php');
92
93 $wikiAll = ob_get_clean();
94 // the pmwiki skin we are using (almost empty) has these keywords:
95 $i = strpos($wikiAll, "<!--/HeaderText-->");
96 $j = strpos($wikiAll, "<!--/PageLeftFmt-->", $i);
97}
98
99if (Env::v('action')) {
100 $page->assign('xorg_extra_header', substr($wikiAll, 0, $i));
101 $wikiAll = substr($wikiAll, $j);
102} else {
103 if (!$cache_exists) {
104 $wikiAll = substr($wikiAll, $j);
105 wiki_putfile($wiki_cache, $wikiAll);
106 } else {
107 $wikiAll = file_get_contents($wiki_cache);
108 }
109}
110
111$page->assign('perms', $perms);
112$page->assign('perms_opts', wiki_perms_options());
113
114$page->assign('canedit', wiki_may_have_perms($perms[1]));
115$page->assign('has_perms', wiki_may_have_perms('admin'));
116
117$page->assign('wikipage', str_replace('.', '/', $n));
118$page->assign('pmwiki', $wikiAll);
119
c99ef281 120$page->addCssLink('wiki.css');
121$page->addJsLink('wiki.js');
27472b85 122
123$page->run();
b62f8858 124
125?>