author | Dan |
Sat, 01 Dec 2007 00:35:15 -0500 | |
changeset 307 | 95dc632bf084 |
parent 286 | b2f985e4cef3 |
child 310 | 199b9708f4a2 |
child 311 | a007145a0ff6 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
70
diff
changeset
|
2 |
|
166
d53cc29308f4
Rebrand as 1.1.1; everything should now be bumped to "unstable" status
Dan
parents:
160
diff
changeset
|
3 |
/* |
0 | 4 |
* Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between |
168
bee40e39321b
Dummy commit to (hopefully) revert merge of unstable code
Dan
parents:
160
diff
changeset
|
5 |
* Version 1.0.2 (Coblynau) |
0 | 6 |
* Copyright (C) 2006-2007 Dan Fuhry |
7 |
* |
|
8 |
* This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License |
|
9 |
* as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
|
10 |
* |
|
11 |
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
|
12 |
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. |
|
13 |
* |
|
246
c9fd175289aa
Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents:
183
diff
changeset
|
14 |
* @package Enano |
c9fd175289aa
Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents:
183
diff
changeset
|
15 |
* @subpackage Frontend |
c9fd175289aa
Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents:
183
diff
changeset
|
16 |
* |
0 | 17 |
*/ |
246
c9fd175289aa
Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents:
183
diff
changeset
|
18 |
|
81
d7fc25acd3f3
Replaced the menu in the admin theme with something much more visually pleasureable; minor fix in Special:UploadFile; finished patching a couple of XSS problems from Banshee; finished Admin:PageGroups; removed unneeded code in flyin.js; finished tag system (except tag cloud); 1.0.1 release candidate
Dan
parents:
80
diff
changeset
|
19 |
// Set up gzip encoding before any output is sent |
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
20 |
|
183
91127e62f38f
Fixed some regular expressions in HTML optimization algorithm; regex page groups can be edited now (oops)
Dan
parents:
174
diff
changeset
|
21 |
$aggressive_optimize_html = true; |
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
22 |
|
0 | 23 |
global $do_gzip; |
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
73
diff
changeset
|
24 |
$do_gzip = true; |
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
25 |
|
0 | 26 |
if(isset($_SERVER['PATH_INFO'])) $v = $_SERVER['PATH_INFO']; |
27 |
elseif(isset($_GET['title'])) $v = $_GET['title']; |
|
28 |
else $v = ''; |
|
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
29 |
|
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
73
diff
changeset
|
30 |
if ( isset($_GET['nocompress']) ) |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
73
diff
changeset
|
31 |
$aggressive_optimize_html = false; |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
73
diff
changeset
|
32 |
|
0 | 33 |
error_reporting(E_ALL); |
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
34 |
|
0 | 35 |
// if(!strstr($v, 'CSS') && !strstr($v, 'UploadFile') && !strstr($v, 'DownloadFile')) // These pages are blacklisted because we can't have debugConsole's HTML output disrupting the flow of header() calls and whatnot |
36 |
// { |
|
37 |
// $do_gzip = ( function_exists('gzcompress') && ( isset($_SERVER['HTTP_ACCEPT_ENCODING']) && strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') ) ) ? true : false; |
|
38 |
// // Uncomment the following line to enable debugConsole (requires PHP 5 or later) |
|
39 |
// // define('ENANO_DEBUG', ''); |
|
40 |
// } |
|
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
41 |
|
0 | 42 |
if(defined('ENANO_DEBUG')) $do_gzip = false; |
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
43 |
|
0 | 44 |
if($aggressive_optimize_html || $do_gzip) |
45 |
{ |
|
46 |
ob_start(); |
|
47 |
} |
|
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
48 |
|
0 | 49 |
require('includes/common.php'); |
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
50 |
|
0 | 51 |
global $db, $session, $paths, $template, $plugins; // Common objects |
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
52 |
|
307 | 53 |
if ( !isset($_GET['do']) ) |
54 |
{ |
|
55 |
$_GET['do'] = 'view'; |
|
56 |
} |
|
0 | 57 |
switch($_GET['do']) |
58 |
{ |
|
59 |
default: |
|
285
7846d45bd250
Changed all urlname/page_id columns to varchar(255) because 63 characters just isn't long enough
Dan
parents:
256
diff
changeset
|
60 |
die_friendly('Invalid action', '<p>The action "'.htmlspecialchars($_GET['do']).'" is not defined. Return to <a href="'.makeUrl($paths->page).'">viewing this page\'s text</a>.</p>'); |
0 | 61 |
break; |
62 |
case 'view': |
|
63 |
// echo PageUtils::getpage($paths->page, true, ( (isset($_GET['oldid'])) ? $_GET['oldid'] : false )); |
|
21
663fcf528726
Updated all version numbers back to Banshee; a few preliminary steps towards full UTF-8 support in page URLs
Dan
parents:
16
diff
changeset
|
64 |
$rev_id = ( (isset($_GET['oldid'])) ? intval($_GET['oldid']) : 0 ); |
663fcf528726
Updated all version numbers back to Banshee; a few preliminary steps towards full UTF-8 support in page URLs
Dan
parents:
16
diff
changeset
|
65 |
$page = new PageProcessor( $paths->cpage['urlname_nons'], $paths->namespace, $rev_id ); |
0 | 66 |
$page->send_headers = true; |
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
28
diff
changeset
|
67 |
$pagepass = ( isset($_REQUEST['pagepass']) ) ? sha1($_REQUEST['pagepass']) : ''; |
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
28
diff
changeset
|
68 |
$page->password = $pagepass; |
61 | 69 |
$page->send(true); |
0 | 70 |
break; |
71 |
case 'comments': |
|
72 |
$template->header(); |
|
73 |
$sub = ( isset ($_GET['sub']) ) ? $_GET['sub'] : false; |
|
74 |
switch($sub) |
|
75 |
{ |
|
76 |
case 'admin': |
|
77 |
default: |
|
78 |
$act = ( isset ($_GET['action']) ) ? $_GET['action'] : false; |
|
79 |
$id = ( isset ($_GET['id']) ) ? intval($_GET['id']) : -1; |
|
80 |
echo PageUtils::comments_html($paths->cpage['urlname_nons'], $paths->namespace, $act, Array('id'=>$id)); |
|
81 |
break; |
|
82 |
case 'postcomment': |
|
83 |
if(empty($_POST['name']) || |
|
84 |
empty($_POST['subj']) || |
|
85 |
empty($_POST['text']) |
|
86 |
) { echo 'Invalid request'; break; } |
|
87 |
$cid = ( isset($_POST['captcha_id']) ) ? $_POST['captcha_id'] : false; |
|
88 |
$cin = ( isset($_POST['captcha_input']) ) ? $_POST['captcha_input'] : false; |
|
89 |
PageUtils::addcomment($paths->cpage['urlname_nons'], $paths->namespace, $_POST['name'], $_POST['subj'], $_POST['text'], $cin, $cid); // All filtering, etc. is handled inside this method |
|
90 |
echo PageUtils::comments_html($paths->cpage['urlname_nons'], $paths->namespace); |
|
91 |
break; |
|
92 |
case 'editcomment': |
|
93 |
if(!isset($_GET['id']) || ( isset($_GET['id']) && !preg_match('#^([0-9]+)$#', $_GET['id']) )) { echo '<p>Invalid comment ID</p>'; break; } |
|
94 |
$q = $db->sql_query('SELECT subject,comment_data,comment_id FROM '.table_prefix.'comments WHERE comment_id='.$_GET['id']); |
|
95 |
if(!$q) $db->_die('The comment data could not be selected.'); |
|
96 |
$row = $db->fetchrow(); |
|
97 |
$db->free_result(); |
|
98 |
echo '<form action="'.makeUrl($paths->page, 'do=comments&sub=savecomment').'" method="post">'; |
|
99 |
echo "<br /><div class='tblholder'><table border='0' width='100%' cellspacing='1' cellpadding='4'> |
|
100 |
<tr><td class='row1'>Subject:</td><td class='row1'><input type='text' name='subj' value='{$row['subject']}' /></td></tr> |
|
101 |
<tr><td class='row2'>Comment:</td><td class='row2'><textarea rows='10' cols='40' style='width: 98%;' name='text'>{$row['comment_data']}</textarea></td></tr> |
|
102 |
<tr><td class='row1' colspan='2' class='row1' style='text-align: center;'><input type='hidden' name='id' value='{$row['comment_id']}' /><input type='submit' value='Save Changes' /></td></tr> |
|
103 |
</table></div>"; |
|
104 |
echo '</form>'; |
|
105 |
break; |
|
106 |
case 'savecomment': |
|
107 |
if(empty($_POST['subj']) || empty($_POST['text'])) { echo '<p>Invalid request</p>'; break; } |
|
108 |
$r = PageUtils::savecomment_neater($paths->cpage['urlname_nons'], $paths->namespace, $_POST['subj'], $_POST['text'], (int)$_POST['id']); |
|
109 |
if($r != 'good') { echo "<pre>$r</pre>"; break; } |
|
110 |
echo PageUtils::comments_html($paths->cpage['urlname_nons'], $paths->namespace); |
|
111 |
break; |
|
112 |
case 'deletecomment': |
|
113 |
if(!empty($_GET['id'])) |
|
114 |
{ |
|
115 |
PageUtils::deletecomment_neater($paths->cpage['urlname_nons'], $paths->namespace, (int)$_GET['id']); |
|
116 |
} |
|
117 |
echo PageUtils::comments_html($paths->cpage['urlname_nons'], $paths->namespace); |
|
118 |
break; |
|
119 |
} |
|
120 |
$template->footer(); |
|
121 |
break; |
|
122 |
case 'edit': |
|
285
7846d45bd250
Changed all urlname/page_id columns to varchar(255) because 63 characters just isn't long enough
Dan
parents:
256
diff
changeset
|
123 |
if(isset($_POST['_cancel'])) |
7846d45bd250
Changed all urlname/page_id columns to varchar(255) because 63 characters just isn't long enough
Dan
parents:
256
diff
changeset
|
124 |
{ |
7846d45bd250
Changed all urlname/page_id columns to varchar(255) because 63 characters just isn't long enough
Dan
parents:
256
diff
changeset
|
125 |
redirect(makeUrl($paths->page), '', '', 0); |
7846d45bd250
Changed all urlname/page_id columns to varchar(255) because 63 characters just isn't long enough
Dan
parents:
256
diff
changeset
|
126 |
break; |
7846d45bd250
Changed all urlname/page_id columns to varchar(255) because 63 characters just isn't long enough
Dan
parents:
256
diff
changeset
|
127 |
} |
7846d45bd250
Changed all urlname/page_id columns to varchar(255) because 63 characters just isn't long enough
Dan
parents:
256
diff
changeset
|
128 |
if(isset($_POST['_save'])) |
7846d45bd250
Changed all urlname/page_id columns to varchar(255) because 63 characters just isn't long enough
Dan
parents:
256
diff
changeset
|
129 |
{ |
0 | 130 |
$e = PageUtils::savepage($paths->cpage['urlname_nons'], $paths->namespace, $_POST['page_text'], $_POST['edit_summary'], isset($_POST['minor'])); |
285
7846d45bd250
Changed all urlname/page_id columns to varchar(255) because 63 characters just isn't long enough
Dan
parents:
256
diff
changeset
|
131 |
if ( $e == 'good' ) |
7846d45bd250
Changed all urlname/page_id columns to varchar(255) because 63 characters just isn't long enough
Dan
parents:
256
diff
changeset
|
132 |
{ |
7846d45bd250
Changed all urlname/page_id columns to varchar(255) because 63 characters just isn't long enough
Dan
parents:
256
diff
changeset
|
133 |
redirect(makeUrl($paths->page), 'Changes saved', 'Your changes to this page have been saved. Redirecting...', 3); |
7846d45bd250
Changed all urlname/page_id columns to varchar(255) because 63 characters just isn't long enough
Dan
parents:
256
diff
changeset
|
134 |
} |
0 | 135 |
} |
136 |
$template->header(); |
|
137 |
if(isset($_POST['_preview'])) |
|
138 |
{ |
|
139 |
$text = $_POST['page_text']; |
|
140 |
echo PageUtils::genPreview($_POST['page_text']); |
|
141 |
} |
|
142 |
else $text = RenderMan::getPage($paths->cpage['urlname_nons'], $paths->namespace, 0, false, false, false, false); |
|
143 |
echo ' |
|
144 |
<form action="'.makeUrl($paths->page, 'do=edit').'" method="post" enctype="multipart/form-data"> |
|
145 |
<br /> |
|
146 |
<textarea name="page_text" rows="20" cols="60" style="width: 97%;">'.$text.'</textarea><br /> |
|
147 |
<br /> |
|
148 |
'; |
|
149 |
if($paths->wiki_mode) |
|
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
150 |
echo 'Edit summary: <input name="edit_summary" type="text" size="40" /><br /><label><input type="checkbox" name="minor" /> This is a minor edit</label><br />'; |
0 | 151 |
echo '<br /> |
152 |
<input type="submit" name="_save" value="Save changes" style="font-weight: bold;" /> |
|
153 |
<input type="submit" name="_preview" value="Preview changes" /> |
|
154 |
<input type="submit" name="_revert" value="Revert changes" /> |
|
155 |
<input type="submit" name="_cancel" value="Cancel" /> |
|
156 |
</form> |
|
157 |
'; |
|
160
87a988ca4ff4
Fixed: wiki mode edit notice should be shown on fallback editor now
Dan
parents:
142
diff
changeset
|
158 |
if ( getConfig('wiki_edit_notice') == '1' ) |
87a988ca4ff4
Fixed: wiki mode edit notice should be shown on fallback editor now
Dan
parents:
142
diff
changeset
|
159 |
{ |
87a988ca4ff4
Fixed: wiki mode edit notice should be shown on fallback editor now
Dan
parents:
142
diff
changeset
|
160 |
$notice = getConfig('wiki_edit_notice_text'); |
87a988ca4ff4
Fixed: wiki mode edit notice should be shown on fallback editor now
Dan
parents:
142
diff
changeset
|
161 |
echo RenderMan::render($notice); |
87a988ca4ff4
Fixed: wiki mode edit notice should be shown on fallback editor now
Dan
parents:
142
diff
changeset
|
162 |
} |
0 | 163 |
$template->footer(); |
164 |
break; |
|
165 |
case 'viewsource': |
|
166 |
$template->header(); |
|
167 |
$text = RenderMan::getPage($paths->cpage['urlname_nons'], $paths->namespace, 0, false, false, false, false); |
|
168 |
echo ' |
|
169 |
<form action="'.makeUrl($paths->page, 'do=edit').'" method="post"> |
|
170 |
<br /> |
|
171 |
<textarea readonly="readonly" name="page_text" rows="20" cols="60" style="width: 97%;">'.$text.'</textarea>'; |
|
172 |
echo '<br /> |
|
173 |
<input type="submit" name="_cancel" value="Close viewer" /> |
|
174 |
</form> |
|
175 |
'; |
|
176 |
$template->footer(); |
|
177 |
break; |
|
178 |
case 'history': |
|
179 |
$hist = PageUtils::histlist($paths->cpage['urlname_nons'], $paths->namespace); |
|
180 |
$template->header(); |
|
181 |
echo $hist; |
|
182 |
$template->footer(); |
|
183 |
break; |
|
184 |
case 'rollback': |
|
185 |
$id = (isset($_GET['id'])) ? $_GET['id'] : false; |
|
186 |
if(!$id || !preg_match('#^([0-9]+)$#', $id)) die_friendly('Invalid action ID', '<p>The URL parameter "id" is not an integer. Exiting to prevent nasties like SQL injection, etc.</p>'); |
|
187 |
$rb = PageUtils::rollback( (int) $id ); |
|
188 |
$template->header(); |
|
189 |
echo '<p>'.$rb.' <a href="'.makeUrl($paths->page).'">Return to the page</a>.</p>'; |
|
190 |
$template->footer(); |
|
191 |
break; |
|
192 |
case 'catedit': |
|
193 |
if(isset($_POST['__enanoSaveButton'])) |
|
194 |
{ |
|
195 |
unset($_POST['__enanoSaveButton']); |
|
196 |
$val = PageUtils::catsave($paths->cpage['urlname_nons'], $paths->namespace, $_POST); |
|
197 |
if($val == 'GOOD') |
|
198 |
{ |
|
199 |
header('Location: '.makeUrl($paths->page)); echo '<html><head><title>Redirecting...</title></head><body>If you haven\'t been redirected yet, <a href="'.makeUrl($paths->page).'">click here</a>.'; break; |
|
200 |
} else { |
|
201 |
die_friendly('Error saving category information', '<p>'.$val.'</p>'); |
|
202 |
} |
|
203 |
} |
|
204 |
elseif(isset($_POST['__enanoCatCancel'])) |
|
205 |
{ |
|
206 |
header('Location: '.makeUrl($paths->page)); echo '<html><head><title>Redirecting...</title></head><body>If you haven\'t been redirected yet, <a href="'.makeUrl($paths->page).'">click here</a>.'; break; |
|
207 |
} |
|
208 |
$template->header(); |
|
209 |
$c = PageUtils::catedit_raw($paths->cpage['urlname_nons'], $paths->namespace); |
|
210 |
echo $c[1]; |
|
211 |
$template->footer(); |
|
212 |
break; |
|
213 |
case 'moreoptions': |
|
214 |
$template->header(); |
|
32
4d87aad3c4c0
Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
Dan
parents:
28
diff
changeset
|
215 |
echo '<div class="menu_nojs" style="width: 150px; padding: 0;"><ul style="display: block;"><li><div class="label">More options for this page</div><div style="clear: both;"></div></li>'.$template->tpl_strings['TOOLBAR_EXTRAS'].'</ul></div>'; |
0 | 216 |
$template->footer(); |
217 |
break; |
|
218 |
case 'protect': |
|
219 |
if (!isset($_REQUEST['level'])) die_friendly('Invalid request', '<p>No protection level specified</p>'); |
|
220 |
if(!empty($_POST['reason'])) |
|
221 |
{ |
|
222 |
if(!preg_match('#^([0-2]*){1}$#', $_POST['level'])) die_friendly('Error protecting page', '<p>Request validation failed</p>'); |
|
223 |
PageUtils::protect($paths->cpage['urlname_nons'], $paths->namespace, intval($_POST['level']), $_POST['reason']); |
|
224 |
die_friendly('Page protected', '<p>The protection setting has been applied. <a href="'.makeUrl($paths->page).'">Return to the page</a>.</p>'); |
|
225 |
} |
|
226 |
$template->header(); |
|
227 |
?> |
|
228 |
<form action="<?php echo makeUrl($paths->page, 'do=protect'); ?>" method="post"> |
|
229 |
<input type="hidden" name="level" value="<?php echo $_REQUEST['level']; ?>" /> |
|
230 |
<?php if(isset($_POST['reason'])) echo '<p style="color: red;">Error: you must enter a reason for protecting this page.</p>'; ?> |
|
231 |
<p>Reason for protecting the page:</p> |
|
232 |
<p><input type="text" name="reason" size="40" /><br /> |
|
233 |
Protecion level to be applied: <b><?php |
|
234 |
switch($_REQUEST['level']) |
|
235 |
{ |
|
236 |
case '0': |
|
237 |
echo 'No protection'; |
|
238 |
break; |
|
239 |
case '1': |
|
240 |
echo 'Full protection'; |
|
241 |
break; |
|
242 |
case '2': |
|
243 |
echo 'Semi-protection'; |
|
244 |
break; |
|
245 |
default: |
|
246 |
echo 'None;</b> Warning: request validation will fail after clicking submit<b>'; |
|
247 |
} |
|
248 |
?></b></p> |
|
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
249 |
<p><input type="submit" value="Protect page" style="font-weight: bold;" /></p> |
0 | 250 |
</form> |
251 |
<?php |
|
252 |
$template->footer(); |
|
253 |
break; |
|
254 |
case 'rename': |
|
255 |
if(!empty($_POST['newname'])) |
|
256 |
{ |
|
257 |
$r = PageUtils::rename($paths->cpage['urlname_nons'], $paths->namespace, $_POST['newname']); |
|
258 |
die_friendly('Page renamed', '<p>'.nl2br($r).' <a href="'.makeUrl($paths->page).'">Return to the page</a>.</p>'); |
|
259 |
} |
|
260 |
$template->header(); |
|
261 |
?> |
|
262 |
<form action="<?php echo makeUrl($paths->page, 'do=rename'); ?>" method="post"> |
|
263 |
<?php if(isset($_POST['newname'])) echo '<p style="color: red;">Error: you must enter a new name for this page.</p>'; ?> |
|
264 |
<p>Please enter a new name for this page:</p> |
|
265 |
<p><input type="text" name="newname" size="40" /></p> |
|
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
266 |
<p><input type="submit" value="Rename page" style="font-weight: bold;" /></p> |
0 | 267 |
</form> |
268 |
<?php |
|
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
269 |
$template->footer(); |
0 | 270 |
break; |
271 |
case 'flushlogs': |
|
272 |
if(!$session->get_permissions('clear_logs')) die_friendly('Access denied', '<p>Flushing the logs for a page <u>requires</u> administrative rights.</p>'); |
|
273 |
if(isset($_POST['_downthejohn'])) |
|
274 |
{ |
|
275 |
$template->header(); |
|
276 |
$result = PageUtils::flushlogs($paths->cpage['urlname_nons'], $paths->namespace); |
|
277 |
echo '<p>'.$result.' <a href="'.makeUrl($paths->page).'">Return to the page</a>.</p>'; |
|
278 |
$template->footer(); |
|
279 |
break; |
|
280 |
} |
|
281 |
$template->header(); |
|
282 |
?> |
|
283 |
<form action="<?php echo makeUrl($paths->page, 'do=flushlogs'); ?>" method="post"> |
|
284 |
<h3>You are about to <span style="color: red;">destroy</span> all logged edits and actions on this page.</h3> |
|
116
77c75179bb95
Made most special pages "visible"; fixup for non-existent special page redirect in paths.php; rewrote Special:AllPages to have pagination (WiP, Special:SpecialPages is possibly next, depending on whether paginate_array works or not)
Dan
parents:
103
diff
changeset
|
285 |
<p>Unlike deleting or editing this page, this action is <u>not reversible</u>! You should only do this if you are desparate for |
0 | 286 |
database space.</p> |
287 |
<p>Do you really want to continue?</p> |
|
288 |
<p><input type="submit" name="_downthejohn" value="Flush logs" style="color: red; font-weight: bold;" /></p> |
|
289 |
</form> |
|
290 |
<?php |
|
291 |
$template->footer(); |
|
292 |
break; |
|
293 |
case 'delvote': |
|
294 |
if(isset($_POST['_ballotbox'])) |
|
295 |
{ |
|
296 |
$template->header(); |
|
297 |
$result = PageUtils::delvote($paths->cpage['urlname_nons'], $paths->namespace); |
|
298 |
echo '<p>'.$result.' <a href="'.makeUrl($paths->page).'">Return to the page</a>.</p>'; |
|
299 |
$template->footer(); |
|
300 |
break; |
|
301 |
} |
|
302 |
$template->header(); |
|
303 |
?> |
|
304 |
<form action="<?php echo makeUrl($paths->page, 'do=delvote'); ?>" method="post"> |
|
305 |
<h3>Your vote counts.</h3> |
|
306 |
<p>If you think that this page is not relavent to the content on this site, or if it looks like this page was only created in |
|
307 |
an attempt to spam the site, you can request that this page be deleted by an administrator.</p> |
|
308 |
<p>After you vote, you should leave a comment explaining the reason for your vote, especially if you are the first person to |
|
309 |
vote against this page.</p> |
|
310 |
<p>So far, <?php echo ( $paths->cpage['delvotes'] == 1 ) ? $paths->cpage['delvotes'] . ' person has' : $paths->cpage['delvotes'] . ' people have'; ?> voted to delete this page.</p> |
|
311 |
<p><input type="submit" name="_ballotbox" value="Vote to delete this page" /></p> |
|
312 |
</form> |
|
313 |
<?php |
|
314 |
$template->footer(); |
|
315 |
break; |
|
316 |
case 'resetvotes': |
|
317 |
if(!$session->get_permissions('vote_reset')) die_friendly('Access denied', '<p>Resetting the deletion votes against this page <u>requires</u> admin rights.</p>'); |
|
318 |
if(isset($_POST['_youmaylivealittlelonger'])) |
|
319 |
{ |
|
320 |
$template->header(); |
|
321 |
$result = PageUtils::resetdelvotes($paths->cpage['urlname_nons'], $paths->namespace); |
|
322 |
echo '<p>'.$result.' <a href="'.makeUrl($paths->page).'">Return to the page</a>.</p>'; |
|
323 |
$template->footer(); |
|
324 |
break; |
|
325 |
} |
|
326 |
$template->header(); |
|
327 |
?> |
|
328 |
<form action="<?php echo makeUrl($paths->page, 'do=resetvotes'); ?>" method="post"> |
|
329 |
<p>This action will reset the number of votes against this page to zero. Are you sure you want to do this?</p> |
|
330 |
<p><input type="submit" name="_youmaylivealittlelonger" value="Reset votes" /></p> |
|
331 |
</form> |
|
332 |
<?php |
|
333 |
$template->footer(); |
|
334 |
break; |
|
335 |
case 'deletepage': |
|
336 |
if(!$session->get_permissions('delete_page')) die_friendly('Access denied', '<p>Deleting pages <u>requires</u> admin rights.</p>'); |
|
337 |
if(isset($_POST['_adiossucker'])) |
|
338 |
{ |
|
28 | 339 |
$reason = ( isset($_POST['reason']) ) ? $_POST['reason'] : false; |
340 |
if ( empty($reason) ) |
|
341 |
$error = 'Please enter a reason for deleting this page.'; |
|
342 |
else |
|
343 |
{ |
|
344 |
$template->header(); |
|
345 |
$result = PageUtils::deletepage($paths->cpage['urlname_nons'], $paths->namespace, $reason); |
|
346 |
echo '<p>'.$result.' <a href="'.makeUrl($paths->page).'">Return to the page</a>.</p>'; |
|
347 |
$template->footer(); |
|
348 |
break; |
|
349 |
} |
|
0 | 350 |
} |
351 |
$template->header(); |
|
352 |
?> |
|
353 |
<form action="<?php echo makeUrl($paths->page, 'do=deletepage'); ?>" method="post"> |
|
354 |
<h3>You are about to <span style="color: red;">destroy</span> this page.</h3> |
|
355 |
<p>While the deletion of the page itself is completely reversible, it is impossible to recover any comments or category information on this page. If this is a file page, the file along with all older revisions of it will be permanently deleted. Also, any custom information that this page is tagged with, such as a custom name, protection status, or additional settings such as whether to allow comments, will be permanently lost.</p> |
|
356 |
<p>Are you <u>absolutely sure</u> that you want to continue?<br /> |
|
357 |
You will not be asked again.</p> |
|
28 | 358 |
<?php if ( isset($error) ) echo "<p>$error</p>"; ?> |
359 |
<p>Reason for deleting: <input type="text" name="reason" size="50" /></p> |
|
0 | 360 |
<p><input type="submit" name="_adiossucker" value="Delete this page" style="color: red; font-weight: bold;" /></p> |
361 |
</form> |
|
362 |
<?php |
|
363 |
$template->footer(); |
|
364 |
break; |
|
365 |
case 'setwikimode': |
|
366 |
if(!$session->get_permissions('set_wiki_mode')) die_friendly('Access denied', '<p>Changing the wiki mode setting <u>requires</u> admin rights.</p>'); |
|
97
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
367 |
if ( isset($_POST['finish']) ) |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
368 |
{ |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
369 |
$level = intval($_POST['level']); |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
370 |
if ( !in_array($level, array(0, 1, 2) ) ) |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
371 |
{ |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
372 |
die_friendly('Invalid request', '<p>Level not specified</p>'); |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
373 |
} |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
374 |
$q = $db->sql_query('UPDATE '.table_prefix.'pages SET wiki_mode=' . $level . ' WHERE urlname=\'' . $db->escape($paths->cpage['urlname_nons']) . '\' AND namespace=\'' . $paths->namespace . '\';'); |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
375 |
if ( !$q ) |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
376 |
$db->_die(); |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
377 |
redirect(makeUrl($paths->page), htmlspecialchars($paths->cpage['name']), 'Wiki mode for this page has been set. Redirecting you to the page...', 2); |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
378 |
} |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
379 |
else |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
380 |
{ |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
381 |
$template->header(); |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
382 |
if(!isset($_GET['level']) || ( isset($_GET['level']) && !preg_match('#^([0-9])$#', $_GET['level']))) die_friendly('Invalid request', '<p>Level not specified</p>'); |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
383 |
$level = intval($_GET['level']); |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
384 |
if ( !in_array($level, array(0, 1, 2) ) ) |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
385 |
{ |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
386 |
die_friendly('Invalid request', '<p>Level not specified</p>'); |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
387 |
} |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
388 |
echo '<form action="' . makeUrl($paths->page, 'do=setwikimode', true) . '" method="post">'; |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
389 |
echo '<input type="hidden" name="finish" value="foo" />'; |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
390 |
echo '<input type="hidden" name="level" value="' . $level . '" />'; |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
391 |
$level_txt = ( $level == 0 ) ? 'disabled' : ( ( $level == 1 ) ? 'enabled' : 'use the global setting' ); |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
392 |
$blurb = ( $level == 0 || ( $level == 2 && getConfig('wiki_mode') != '1' ) ) ? 'Because this will disable the wiki behavior on this page, several features, most |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
393 |
notably the ability for users to vote to have this page deleted, will be disabled as they are not relevant to non-wiki pages. In addition, users will not be able |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
394 |
to edit this page unless an ACL rule specifically permits them.' : 'Because this will enable the wiki behavior on this page, users will gain the ability to |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
395 |
freely edit this page unless an ACL rule specifically denies them. If your site is public and gets good traffic, you should be aware of the possiblity of vandalism, and you need to be ready to revert |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
396 |
malicious edits to this page.'; |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
397 |
?> |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
398 |
<h3>You are changing wiki mode for this page.</h3> |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
399 |
<p>Wiki features will be set to <?php echo $level_txt; ?>. <?php echo $blurb; ?></p> |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
400 |
<p>If you want to continue, please click the button below.</p> |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
401 |
<p><input type="submit" value="Set wiki mode" /></p> |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
402 |
<?php |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
403 |
echo '</form>'; |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
404 |
$template->footer(); |
293148ad7a70
Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents:
91
diff
changeset
|
405 |
} |
0 | 406 |
break; |
407 |
case 'diff': |
|
408 |
$template->header(); |
|
409 |
$id1 = ( isset($_GET['diff1']) ) ? (int)$_GET['diff1'] : false; |
|
410 |
$id2 = ( isset($_GET['diff2']) ) ? (int)$_GET['diff2'] : false; |
|
411 |
if(!$id1 || !$id2) { echo '<p>Invalid request.</p>'; $template->footer(); break; } |
|
412 |
if(!preg_match('#^([0-9]+)$#', (string)$_GET['diff1']) || |
|
413 |
!preg_match('#^([0-9]+)$#', (string)$_GET['diff2'] )) { echo '<p>SQL injection attempt</p>'; $template->footer(); break; } |
|
414 |
echo PageUtils::pagediff($paths->cpage['urlname_nons'], $paths->namespace, $id1, $id2); |
|
415 |
$template->footer(); |
|
416 |
break; |
|
91 | 417 |
case 'detag': |
418 |
if ( $session->user_level < USER_LEVEL_ADMIN ) |
|
419 |
{ |
|
420 |
die_friendly('Access denied', '<p>You need to be an administrator to detag pages.</p>'); |
|
421 |
} |
|
422 |
if ( $paths->page_exists ) |
|
423 |
{ |
|
424 |
die_friendly('Invalid request', '<p>The detag action is only valid for pages that have been deleted in the past.</p>'); |
|
425 |
} |
|
426 |
$q = $db->sql_query('DELETE FROM '.table_prefix.'tags WHERE page_id=\'' . $db->escape($paths->cpage['urlname_nons']) . '\' AND namespace=\'' . $paths->namespace . '\';'); |
|
427 |
if ( !$q ) |
|
428 |
$db->_die('Detag query, index.php:'.__LINE__); |
|
429 |
die_friendly('Page detagged', '<p>All stale tags have been removed from this page.</p>'); |
|
430 |
break; |
|
0 | 431 |
case 'aclmanager': |
432 |
$data = ( isset($_POST['data']) ) ? $_POST['data'] : Array('mode' => 'listgroups'); |
|
433 |
PageUtils::aclmanager($data); |
|
434 |
break; |
|
286
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
285
diff
changeset
|
435 |
case 'sql_report': |
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
285
diff
changeset
|
436 |
$rev_id = ( (isset($_GET['oldid'])) ? intval($_GET['oldid']) : 0 ); |
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
285
diff
changeset
|
437 |
$page = new PageProcessor( $paths->cpage['urlname_nons'], $paths->namespace, $rev_id ); |
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
285
diff
changeset
|
438 |
$page->send_headers = true; |
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
285
diff
changeset
|
439 |
$pagepass = ( isset($_REQUEST['pagepass']) ) ? sha1($_REQUEST['pagepass']) : ''; |
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
285
diff
changeset
|
440 |
$page->password = $pagepass; |
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
285
diff
changeset
|
441 |
$page->send(true); |
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
285
diff
changeset
|
442 |
ob_end_clean(); |
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
285
diff
changeset
|
443 |
ob_start(); |
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
285
diff
changeset
|
444 |
$db->sql_report(); |
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
285
diff
changeset
|
445 |
break; |
0 | 446 |
} |
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
447 |
|
0 | 448 |
// |
449 |
// Optimize HTML by replacing newlines with spaces (excludes <pre>, <script>, and <style> blocks) |
|
450 |
// |
|
451 |
if ($aggressive_optimize_html) |
|
452 |
{ |
|
453 |
// Load up the HTML |
|
454 |
$html = ob_get_contents(); |
|
286
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
285
diff
changeset
|
455 |
@ob_end_clean(); |
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
456 |
|
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
73
diff
changeset
|
457 |
$html = aggressive_optimize_html($html); |
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
458 |
|
0 | 459 |
// Re-enable output buffering to allow the Gzip function (below) to work |
460 |
ob_start(); |
|
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
461 |
|
0 | 462 |
// Done, send it to the user |
463 |
echo( $html ); |
|
464 |
} |
|
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
73
diff
changeset
|
465 |
|
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
73
diff
changeset
|
466 |
$db->close(); |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
73
diff
changeset
|
467 |
gzip_output(); |
42
45ebe475ff75
I dunno how many times I'm gonna have to fix the "problem seems to be the hex conversion" bug, but this is at least the fourth try.
Dan
parents:
41
diff
changeset
|
468 |
|
0 | 469 |
?> |