various fixes for php5.
[platal.git] / classes / platalpage.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
50a40a33 3 * Copyright (C) 2003-2006 Polytechnique.org *
0337d704 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
f12af8ad 22require_once 'smarty/libs/Smarty.class.php';
0337d704 23
f12af8ad 24class PlatalPage extends Smarty
0337d704 25{
0337d704 26 var $_page_type;
27 var $_tpl;
28 var $_errors;
860fdaec 29 var $_failure;
0337d704 30
31 // defaults
32 var $caching = false;
33 var $config_overwrite = false;
34 var $use_sub_dirs = false;
35
0337d704 36 // {{{ function PlatalPage()
37
62a66dfc 38 function PlatalPage($tpl, $type = SKINNED)
0337d704 39 {
40 global $globals;
41
f12af8ad 42 $this->Smarty();
796aea34 43
0337d704 44 $this->template_dir = $globals->spoolroot."/templates/";
7faf6e6a 45 $this->compile_dir = $globals->spoolroot."/spool/templates_c/";
0337d704 46 array_unshift($this->plugins_dir, $globals->spoolroot."/plugins/");
47 $this->config_dir = $globals->spoolroot."/configs/";
48
49 $this->compile_check = !empty($globals->debug);
50
0337d704 51 $this->_page_type = $type;
52 $this->_tpl = $tpl;
860fdaec 53 $this->_errors = array();
54 $this->_failure = false;
0337d704 55
0337d704 56 $this->register_prefilter('at_to_globals');
57 $this->register_prefilter('trimwhitespace');
c99ef281 58 $this->addJsLink('xorg.js');
0337d704 59 }
60
61 // }}}
62 // {{{ function changeTpl()
63
62a66dfc 64 function changeTpl($tpl, $type = SKINNED)
0337d704 65 {
66 $this->_tpl = $tpl;
67 $this->_page_type = $type;
0337d704 68 $this->assign('xorg_tpl', $tpl);
69 }
70
71 // }}}
72 // {{{ function _run()
73
74 function _run($skin)
75 {
76 global $globals, $TIME_BEGIN;
36f114ef 77
78 session_write_close();
79
860fdaec 80 $this->assign("xorg_errors", $this->_errors);
81 $this->assign("xorg_failure", $this->_failure);
d083f500 82 $this->assign('globals', $globals);
a3a049fc 83
62a66dfc 84 switch ($this->_page_type) {
85 case NO_SKIN:
0337d704 86 $this->display($this->_tpl);
87 exit;
62a66dfc 88
89 case SIMPLE:
c6db254a 90 $this->assign('simple', true);
62a66dfc 91 case SKINNED:
801fcad8 92 $this->register_modifier('escape_html', 'escape_html');
93 $this->default_modifiers = Array('@escape_html');
0337d704 94 }
b4315e15 95
96 if (!$globals->debug) {
97 $this->display($skin);
98 exit;
99 }
a3a049fc 100
b4315e15 101 if ($globals->debug & 1) {
f1ca33de 102 $this->assign('db_trace', XDB::trace_format($this, 'database-debug.tpl'));
b4315e15 103 }
0337d704 104
7da8ef90 105 $this->assign('validate', true);
b4315e15 106 $result = $this->fetch($skin);
36f114ef 107 $ttime .= sprintf('Temps total: %.02fs<br />', microtime_float() - $TIME_BEGIN);
b4315e15 108 $replc = "<span class='erreur'>VALIDATION HTML INACTIVE</span><br />";
0337d704 109
b4315e15 110 if ($globals->debug & 2) {
111
112 $fd = fopen($this->compile_dir."/valid.html","w");
113 fwrite($fd, $result);
114 fclose($fd);
a3a049fc 115
b4315e15 116 exec($globals->spoolroot."/bin/devel/xhtml.validate.pl ".$this->compile_dir."/valid.html", $val);
117 foreach ($val as $h) {
118 if (preg_match("/^X-W3C-Validator-Errors: (\d+)$/", $h, $m)) {
119 $replc = '<span style="color: #080;">HTML OK</span><br />';
120 if ($m[1]) {
121 $replc = "<span class='erreur'><a href='http://validator.w3.org/check?uri={$globals->baseurl}"
122 ."/valid.html&amp;ss=1#result'>{$m[1]} ERREUR(S) !!!</a></span><br />";
0337d704 123 }
b4315e15 124 break;
0337d704 125 }
126 }
0337d704 127 }
128
b4315e15 129 echo str_replace("@HOOK@", $ttime.$replc, $result);
0337d704 130 exit;
131 }
132
133 // }}}
0337d704 134 // {{{ function nb_errs()
135
136 function nb_errs()
137 {
860fdaec 138 return count($this->_errors);
0337d704 139 }
140
141 // }}}
142 // {{{ function trig()
143
144 function trig($msg)
145 {
860fdaec 146 $this->_errors[] = $msg;
0337d704 147 }
148
149 // }}}
0337d704 150 // {{{ function kill()
151
152 function kill($msg)
153 {
0fcbe8d0 154 $this->trig($msg);
155 $this->_failure = true;
0337d704 156 $this->run();
157 }
158
159 // }}}
0337d704 160 // {{{ function addJsLink
161
162 function addJsLink($path)
163 {
164 $this->append('xorg_js', $path);
165 }
166
167 // }}}
168 // {{{ function addCssLink
169
170 function addCssLink($path)
171 {
172 $this->append('xorg_css', $path);
173 }
174
175 // }}}
0337d704 176}
177
b76f0797 178// {{{ function escape_html ()
179
180/**
181 * default smarty plugin, used to auto-escape dangerous html.
182 *
183 * < --> &lt;
184 * > --> &gt;
185 * " --> &quot;
186 * & not followed by some entity --> &amp;
187 */
188function escape_html($string)
189{
190 if (is_string($string)) {
191 $transtbl = Array('<' => '&lt;', '>' => '&gt;', '"' => '&quot;', '\'' => '&#39;');
192 return preg_replace("/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,4};)/", "&amp;" , strtr($string, $transtbl));
193 } else {
194 return $string;
195 }
196}
197
198// }}}
199// {{{ function at_to_globals()
200
201/**
202 * helper
203 */
204
205function _to_globals($s) {
206 global $globals;
207 $t = explode('.',$s);
208 if (count($t) == 1) {
209 return var_export($globals->$t[0],true);
210 } else {
211 return var_export($globals->$t[0]->$t[1],true);
212 }
213}
214
215/**
216 * compilation plugin used to import $globals confing through #globals.foo.bar# directives
217 */
218
219function at_to_globals($tpl_source, &$smarty)
220{
221 return preg_replace('/#globals\.([a-zA-Z0-9_.]+?)#/e', '_to_globals(\'\\1\')', $tpl_source);
222}
223
224// }}}
225// {{{ function trimwhitespace
226
227function trimwhitespace($source, &$smarty)
228{
229 $tags = array('script', 'pre', 'textarea');
230
231 foreach ($tags as $tag) {
232 preg_match_all("!<{$tag}[^>]+>.*?</{$tag}>!is", $source, ${$tag});
233 $source = preg_replace("!<{$tag}[^>]+>.*?</{$tag}>!is", "&&&{$tag}&&&", $source);
234 }
235
236 // remove all leading spaces, tabs and carriage returns NOT
237 // preceeded by a php close tag.
238 $source = preg_replace('/((?<!\?>)\n)[\s]+/m', '\1', $source);
239
240 foreach ($tags as $tag) {
241 $source = preg_replace("!&&&{$tag}&&&!e", 'array_shift(${$tag}[0])', $source);
242 }
243
244 return $source;
245}
246
247// }}}
248
0337d704 249// vim:set et sw=4 sts=4 sws=4 foldmethod=marker:
250?>