0
+ − 1
<?php
+ − 2
/*
+ − 3
Plugin Name: Special page-related pages
+ − 4
Plugin URI: http://enanocms.org/
+ − 5
Description: Provides the page Special:CreatePage, which can be used to create new pages. Also adds the About Enano and GNU General Public License pages.
+ − 6
Author: Dan Fuhry
181
9237767a23ae
Implemented cron image into Oxygen and St Patty as promised; fixed way-outdated version numbers in plugins
Dan
diff
changeset
+ − 7
Version: 1.0.2
0
+ − 8
Author URI: http://enanocms.org/
+ − 9
*/
+ − 10
+ − 11
/*
+ − 12
* Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
181
9237767a23ae
Implemented cron image into Oxygen and St Patty as promised; fixed way-outdated version numbers in plugins
Dan
diff
changeset
+ − 13
* Version 1.0.2
0
+ − 14
* Copyright (C) 2006-2007 Dan Fuhry
+ − 15
*
+ − 16
* This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
+ − 17
* as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
+ − 18
*
+ − 19
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
+ − 20
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
+ − 21
*/
+ − 22
+ − 23
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 24
+ − 25
$plugins->attachHook('base_classes_initted', '
+ − 26
global $paths;
+ − 27
$paths->add_page(Array(
+ − 28
\'name\'=>\'Create page\',
+ − 29
\'urlname\'=>\'CreatePage\',
+ − 30
\'namespace\'=>\'Special\',
+ − 31
\'special\'=>0,\'visible\'=>1,\'comments_on\'=>0,\'protected\'=>1,\'delvotes\'=>0,\'delvote_ips\'=>\'\',
+ − 32
));
+ − 33
+ − 34
$paths->add_page(Array(
+ − 35
\'name\'=>\'All pages\',
+ − 36
\'urlname\'=>\'AllPages\',
+ − 37
\'namespace\'=>\'Special\',
+ − 38
\'special\'=>0,\'visible\'=>1,\'comments_on\'=>0,\'protected\'=>1,\'delvotes\'=>0,\'delvote_ips\'=>\'\',
+ − 39
));
+ − 40
+ − 41
$paths->add_page(Array(
+ − 42
\'name\'=>\'List of special pages\',
+ − 43
\'urlname\'=>\'SpecialPages\',
+ − 44
\'namespace\'=>\'Special\',
+ − 45
\'special\'=>0,\'visible\'=>1,\'comments_on\'=>0,\'protected\'=>1,\'delvotes\'=>0,\'delvote_ips\'=>\'\',
+ − 46
));
+ − 47
+ − 48
$paths->add_page(Array(
+ − 49
\'name\'=>\'About Enano\',
+ − 50
\'urlname\'=>\'About_Enano\',
+ − 51
\'namespace\'=>\'Special\',
+ − 52
\'special\'=>0,\'visible\'=>1,\'comments_on\'=>0,\'protected\'=>1,\'delvotes\'=>0,\'delvote_ips\'=>\'\',
+ − 53
));
+ − 54
+ − 55
$paths->add_page(Array(
+ − 56
\'name\'=>\'GNU General Public License\',
+ − 57
\'urlname\'=>\'GNU_General_Public_License\',
+ − 58
\'namespace\'=>\'Special\',
+ − 59
\'special\'=>0,\'visible\'=>1,\'comments_on\'=>0,\'protected\'=>1,\'delvotes\'=>0,\'delvote_ips\'=>\'\',
+ − 60
));
83
+ − 61
+ − 62
$paths->add_page(Array(
+ − 63
\'name\'=>\'Tag cloud\',
+ − 64
\'urlname\'=>\'TagCloud\',
+ − 65
\'namespace\'=>\'Special\',
+ − 66
\'special\'=>0,\'visible\'=>1,\'comments_on\'=>0,\'protected\'=>1,\'delvotes\'=>0,\'delvote_ips\'=>\'\',
+ − 67
));
0
+ − 68
');
+ − 69
+ − 70
// function names are IMPORTANT!!! The name pattern is: page_<namespace ID>_<page URLname, without namespace>
+ − 71
22
+ − 72
function page_Special_CreatePage()
+ − 73
{
0
+ − 74
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 75
if ( isset($_POST['do']) )
+ − 76
{
+ − 77
$p = $_POST['pagename'];
+ − 78
$k = array_keys($paths->nslist);
+ − 79
for ( $i = 0; $i < sizeof( $paths->nslist ); $i++ )
+ − 80
{
+ − 81
$ln = strlen( $paths->nslist[$k[$i]] );
+ − 82
if ( substr($p, 0, $ln) == $paths->nslist[$k[$i]] )
+ − 83
{
+ − 84
$namespace = $k[$i];
+ − 85
}
+ − 86
}
+ − 87
if ( $namespace == 'Special' || ( $namespace == 'System' && $session->user_level < USER_LEVEL_ADMIN ) || $namespace == 'Admin')
+ − 88
{
+ − 89
$template->header();
+ − 90
+ − 91
echo '<h3>The page could not be created.</h3><p>The name "'.$p.'" is invalid.</p>';
+ − 92
+ − 93
$template->footer();
+ − 94
$db->close();
+ − 95
+ − 96
exit;
+ − 97
}
+ − 98
$name = $db->escape(str_replace('_', ' ', $p));
22
+ − 99
$urlname = str_replace(' ', '_', $p);
0
+ − 100
$namespace = $_POST['namespace'];
+ − 101
if ( $namespace == 'Special' || ( $namespace == 'System' && $session->user_level < USER_LEVEL_ADMIN ) || $namespace == 'Admin')
+ − 102
{
+ − 103
$template->header();
+ − 104
+ − 105
echo '<h3>The page could not be created.</h3><p>The name "'.$paths->nslist[$namespace].$p.'" is invalid.</p>';
+ − 106
+ − 107
$template->footer();
+ − 108
$db->close();
+ − 109
+ − 110
exit;
+ − 111
}
182
bf0fdec102e9
SECURITY: Fixed possible SQL injection in PageUtils page protection; general cleanup of PageUtils; blocked using Project: prefix for page URL strings
Dan
diff
changeset
+ − 112
if ( substr($urlname, 0, 8) == 'Project:' )
bf0fdec102e9
SECURITY: Fixed possible SQL injection in PageUtils page protection; general cleanup of PageUtils; blocked using Project: prefix for page URL strings
Dan
diff
changeset
+ − 113
{
bf0fdec102e9
SECURITY: Fixed possible SQL injection in PageUtils page protection; general cleanup of PageUtils; blocked using Project: prefix for page URL strings
Dan
diff
changeset
+ − 114
$template->header();
bf0fdec102e9
SECURITY: Fixed possible SQL injection in PageUtils page protection; general cleanup of PageUtils; blocked using Project: prefix for page URL strings
Dan
diff
changeset
+ − 115
bf0fdec102e9
SECURITY: Fixed possible SQL injection in PageUtils page protection; general cleanup of PageUtils; blocked using Project: prefix for page URL strings
Dan
diff
changeset
+ − 116
echo '<h3>The page could not be created.</h3><p>The page title can\'t start with "Project:" because this prefix is reserved for a parser shortcut.</p>';
bf0fdec102e9
SECURITY: Fixed possible SQL injection in PageUtils page protection; general cleanup of PageUtils; blocked using Project: prefix for page URL strings
Dan
diff
changeset
+ − 117
bf0fdec102e9
SECURITY: Fixed possible SQL injection in PageUtils page protection; general cleanup of PageUtils; blocked using Project: prefix for page URL strings
Dan
diff
changeset
+ − 118
$template->footer();
bf0fdec102e9
SECURITY: Fixed possible SQL injection in PageUtils page protection; general cleanup of PageUtils; blocked using Project: prefix for page URL strings
Dan
diff
changeset
+ − 119
$db->close();
bf0fdec102e9
SECURITY: Fixed possible SQL injection in PageUtils page protection; general cleanup of PageUtils; blocked using Project: prefix for page URL strings
Dan
diff
changeset
+ − 120
bf0fdec102e9
SECURITY: Fixed possible SQL injection in PageUtils page protection; general cleanup of PageUtils; blocked using Project: prefix for page URL strings
Dan
diff
changeset
+ − 121
exit;
bf0fdec102e9
SECURITY: Fixed possible SQL injection in PageUtils page protection; general cleanup of PageUtils; blocked using Project: prefix for page URL strings
Dan
diff
changeset
+ − 122
}
0
+ − 123
+ − 124
$tn = $paths->nslist[$_POST['namespace']] . $urlname;
+ − 125
if ( isset($paths->pages[$tn]) )
+ − 126
{
+ − 127
die_friendly('Error creating page', '<p>The page already exists.</p>');
+ − 128
}
+ − 129
+ − 130
if ( $paths->nslist[$namespace] == substr($urlname, 0, strlen($paths->nslist[$namespace]) ) )
+ − 131
{
+ − 132
$urlname = substr($urlname, strlen($paths->nslist[$namespace]), strlen($urlname));
+ − 133
}
+ − 134
+ − 135
$k = array_keys( $paths->nslist );
+ − 136
if(!in_array($_POST['namespace'], $k))
+ − 137
{
+ − 138
$db->_die('An SQL injection attempt was caught at '.dirname(__FILE__).':'.__LINE__.'.');
+ − 139
}
+ − 140
112
+ − 141
$ips = array(
+ − 142
'ip' => array(),
+ − 143
'u' => array()
+ − 144
);
+ − 145
$ips = $db->escape(serialize($ips));
+ − 146
22
+ − 147
$urlname = sanitize_page_id($urlname);
+ − 148
$urlname = $db->escape($urlname);
+ − 149
0
+ − 150
$perms = $session->fetch_page_acl($urlname, $namespace);
+ − 151
if ( !$perms->get_permissions('create_page') )
+ − 152
die_friendly('Error creating page', '<p>An access control rule is preventing you from creating pages.</p>');
+ − 153
+ − 154
$q = $db->sql_query('INSERT INTO '.table_prefix.'logs(time_id,date_string,log_type,action,author,page_id,namespace) VALUES('.time().', \''.date('d M Y h:i a').'\', \'page\', \'create\', \''.$session->username.'\', \''.$urlname.'\', \''.$_POST['namespace'].'\');');
+ − 155
if ( !$q )
+ − 156
{
+ − 157
$db->_die('The page log could not be updated.');
+ − 158
}
+ − 159
112
+ − 160
$q = $db->sql_query('INSERT INTO '.table_prefix.'pages(name,urlname,namespace,delvote_ips) VALUES(\''.$name.'\', \''.$urlname.'\', \''.$_POST['namespace'].'\',\'' . $ips . '\');');
0
+ − 161
if ( !$q )
+ − 162
{
+ − 163
$db->_die('The page entry could not be inserted.');
+ − 164
}
156
+ − 165
$q = $db->sql_query('INSERT INTO '.table_prefix.'page_text(page_id,namespace,page_text) VALUES(\''.$urlname.'\', \''.$_POST['namespace'].'\', \''.'\');');
0
+ − 166
if ( !$q )
+ − 167
{
+ − 168
$db->_die('The page text entry could not be inserted.');
+ − 169
}
+ − 170
156
+ − 171
header('Location: '.makeUrlNS($_POST['namespace'], sanitize_page_id($p)) . '#do:edit');
0
+ − 172
exit;
+ − 173
}
+ − 174
$template->header();
+ − 175
if ( !$session->get_permissions('create_page') )
+ − 176
{
+ − 177
echo 'Wiki mode is disabled, only admins can create pages.';
+ − 178
+ − 179
$template->footer();
+ − 180
$db->close();
+ − 181
+ − 182
exit;
+ − 183
}
+ − 184
echo RenderMan::render('Using the form below you can create a page.');
+ − 185
?>
+ − 186
<form action="" method="post">
+ − 187
<p>
+ − 188
<select name="namespace">
+ − 189
<?php
+ − 190
$k = array_keys($paths->nslist);
+ − 191
for ( $i = 0; $i < sizeof($k); $i++ )
+ − 192
{
+ − 193
if ( $paths->nslist[$k[$i]] == '' )
+ − 194
{
+ − 195
$s = '[No prefix]';
+ − 196
}
+ − 197
else
+ − 198
{
+ − 199
$s = $paths->nslist[$k[$i]];
+ − 200
}
+ − 201
if ( ( $k[$i] != 'System' || $session->user_level >= USER_LEVEL_ADMIN ) && $k[$i] != 'Admin' && $k[$i] != 'Special')
+ − 202
{
+ − 203
echo '<option value="'.$k[$i].'">'.$s.'</option>';
+ − 204
}
+ − 205
}
+ − 206
?>
+ − 207
</select> <input type="text" name="pagename" /></p>
+ − 208
<p><input type="submit" name="do" value="Create Page" /></p>
+ − 209
</form>
+ − 210
<?php
+ − 211
$template->footer();
+ − 212
}
+ − 213
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
diff
changeset
+ − 214
function PagelistingFormatter($id, $row)
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
diff
changeset
+ − 215
{
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
diff
changeset
+ − 216
global $db, $session, $paths, $template, $plugins; // Common objects
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
diff
changeset
+ − 217
static $rowtracker = 0;
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
diff
changeset
+ − 218
static $tdclass = 'row2';
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
diff
changeset
+ − 219
static $per_row = 2;
117
+ − 220
static $first = true;
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
diff
changeset
+ − 221
$return = '';
117
+ − 222
if ( $id === false && $row === false )
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
diff
changeset
+ − 223
{
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
diff
changeset
+ − 224
$rowtracker = 0;
117
+ − 225
$first = true;
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
diff
changeset
+ − 226
return false;
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
diff
changeset
+ − 227
}
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
diff
changeset
+ − 228
$rowtracker++;
117
+ − 229
if ( $rowtracker == $per_row || $first )
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
diff
changeset
+ − 230
{
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
diff
changeset
+ − 231
$rowtracker = 0;
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
diff
changeset
+ − 232
$tdclass = ( $tdclass == 'row2' ) ? 'row1' : 'row2';
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
diff
changeset
+ − 233
}
117
+ − 234
if ( $rowtracker == 0 && !$first )
+ − 235
$return .= "</tr>\n<tr>";
+ − 236
+ − 237
$first = false;
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
diff
changeset
+ − 238
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
diff
changeset
+ − 239
preg_match('/^ns=(' . implode('|', array_keys($paths->nslist)) . ');pid=(.*?)$/i', $id, $match);
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
diff
changeset
+ − 240
$namespace =& $match[1];
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
diff
changeset
+ − 241
$page_id =& $match[2];
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
diff
changeset
+ − 242
$page_id = sanitize_page_id($page_id);
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
diff
changeset
+ − 243
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
diff
changeset
+ − 244
$url = makeUrlNS($namespace, $page_id);
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
diff
changeset
+ − 245
$url = htmlspecialchars($url);
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
diff
changeset
+ − 246
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
diff
changeset
+ − 247
$link = '<a href="' . $url . '">' . htmlspecialchars($row['name']) . '</a>';
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
diff
changeset
+ − 248
$td = '<td class="' . $tdclass . '" style="width: 50%;">' . $link . '</td>';
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
diff
changeset
+ − 249
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
diff
changeset
+ − 250
$return .= $td;
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
diff
changeset
+ − 251
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
diff
changeset
+ − 252
return $return;
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
diff
changeset
+ − 253
}
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
diff
changeset
+ − 254
0
+ − 255
function page_Special_AllPages()
+ − 256
{
+ − 257
// This should be an easy one
+ − 258
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 259
$template->header();
+ − 260
$sz = sizeof( $paths->pages ) / 2;
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
diff
changeset
+ − 261
echo '<p>Below is a list of all of the pages on this website.</p>';
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
diff
changeset
+ − 262
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
diff
changeset
+ − 263
$q = $db->sql_query('SELECT COUNT(urlname) FROM '.table_prefix.'pages WHERE visible!=0;');
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
diff
changeset
+ − 264
if ( !$q )
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
diff
changeset
+ − 265
$db->_die();
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
diff
changeset
+ − 266
$row = $db->fetchrow_num();
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
diff
changeset
+ − 267
$count = $row[0];
117
+ − 268
+ − 269
switch($count % 4)
+ − 270
{
+ − 271
case 0:
+ − 272
case 2:
+ − 273
// even number of results; do nothing
+ − 274
$last_cell = '';
+ − 275
break;
+ − 276
case 1:
+ − 277
// odd number of results and odd number of rows, use row1
+ − 278
$last_cell = '<td class="row1"></td>';
+ − 279
break;
+ − 280
case 3:
+ − 281
// odd number of results and even number of rows, use row2
+ − 282
$last_cell = '<td class="row2"></td>';
+ − 283
break;
+ − 284
}
+ − 285
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
diff
changeset
+ − 286
$db->free_result();
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
diff
changeset
+ − 287
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
diff
changeset
+ − 288
$q = $db->sql_unbuffered_query('SELECT CONCAT("ns=",namespace,";pid=",urlname) AS identifier, name FROM '.table_prefix.'pages WHERE visible!=0 ORDER BY name ASC;');
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
diff
changeset
+ − 289
if ( !$q )
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
diff
changeset
+ − 290
$db->_die();
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
diff
changeset
+ − 291
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
diff
changeset
+ − 292
$offset = ( isset($_GET['offset']) ) ? intval($_GET['offset']) : 0;
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
diff
changeset
+ − 293
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
diff
changeset
+ − 294
// reset formatter
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
diff
changeset
+ − 295
PagelistingFormatter(false, false);
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
diff
changeset
+ − 296
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
diff
changeset
+ − 297
$result = paginate(
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
diff
changeset
+ − 298
$q, // result resource
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
diff
changeset
+ − 299
'{identifier}', // formatting template
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
diff
changeset
+ − 300
$count, // # of results
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
diff
changeset
+ − 301
makeUrlNS('Special', 'AllPages', 'offset=%s'), // result URL
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
diff
changeset
+ − 302
$offset, // start offset
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
diff
changeset
+ − 303
40, // results per page
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
diff
changeset
+ − 304
array( 'identifier' => 'PagelistingFormatter' ), // hooks
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
diff
changeset
+ − 305
'<div class="tblholder">
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
diff
changeset
+ − 306
<table border="0" cellspacing="1" cellpadding="4">
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
diff
changeset
+ − 307
<tr>', // print at start
117
+ − 308
' ' . $last_cell . '</tr>
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
diff
changeset
+ − 309
</table>
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
diff
changeset
+ − 310
</div>' // print at end
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
diff
changeset
+ − 311
);
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
diff
changeset
+ − 312
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
diff
changeset
+ − 313
echo $result;
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
diff
changeset
+ − 314
0
+ − 315
$template->footer();
+ − 316
}
+ − 317
+ − 318
function page_Special_SpecialPages()
+ − 319
{
+ − 320
// This should be an easy one
+ − 321
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 322
$template->header();
+ − 323
$sz = sizeof($paths->pages) / 2;
+ − 324
echo '<p>Below is a list of all of the special pages on this website.</p><div class="tblholder"><table border="0" width="100%" cellspacing="1" cellpadding="4">';
+ − 325
$cclass='row1';
+ − 326
for ( $i = 0; $i < $sz; $i = $i)
+ − 327
{
+ − 328
if ( $cclass == 'row1' )
+ − 329
{
+ − 330
$cclass = 'row3';
+ − 331
}
+ − 332
else if ( $cclass == 'row3')
+ − 333
{
+ − 334
$cclass='row1';
+ − 335
}
+ − 336
echo '<tr>';
+ − 337
for ( $j = 0; $j < 2; $j = $j )
+ − 338
{
+ − 339
if ( $i < $sz && $paths->pages[$i]['namespace'] == 'Special' && $paths->pages[$i]['visible'] == 1)
+ − 340
{
+ − 341
echo '<td style="width: 50%" class="'.$cclass.'"><a href="'.makeUrl($paths->pages[$i]['urlname']).'">';
+ − 342
echo $paths->pages[$i]['name'].'</a></td>';
+ − 343
$j++;
+ − 344
}
+ − 345
else if ( $i >= $sz )
+ − 346
{
+ − 347
echo '<td style="width: 50%" class="row2"></td>';
+ − 348
$j++;
+ − 349
}
+ − 350
$i++;
+ − 351
}
+ − 352
echo '</tr>';
+ − 353
}
+ − 354
echo '</table></div>';
+ − 355
$template->footer();
+ − 356
}
+ − 357
+ − 358
function page_Special_About_Enano()
+ − 359
{
+ − 360
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 361
$platform = 'Unknown';
+ − 362
$uname = @file_get_contents('/proc/sys/kernel/ostype');
+ − 363
if($uname == "Linux\n")
+ − 364
$platform = 'Linux';
+ − 365
else if(file_exists('/hurd/pfinet')) // I have a little experience with GNU/Hurd :-) http://hurdvm.enanocms.org/
+ − 366
$platform = 'GNU/Hurd';
+ − 367
else if(file_exists('C:\Windows\system32\ntoskrnl.exe'))
+ − 368
$platform = 'Windows NT';
+ − 369
else if(file_exists('C:\Windows\system\krnl386.exe'))
+ − 370
$platform = 'Windows 9x/DOS';
+ − 371
else if(file_exists('/bin/bash'))
+ − 372
$platform = 'Other GNU/Mac OS X';
+ − 373
else if(is_dir('/bin'))
+ − 374
$platform = 'Other POSIX';
+ − 375
$template->header();
+ − 376
?>
+ − 377
<br />
+ − 378
<div class="tblholder">
+ − 379
<table border="0" cellspacing="1" cellpadding="4">
+ − 380
<tr><th colspan="2" style="text-align: left;">About the Enano Content Management System</th></tr>
23
+ − 381
<tr><td colspan="2" class="row3"><p>This website is powered by <a href="http://enanocms.org/">Enano</a>, the lightweight and open source
38
+ − 382
CMS that everyone can use. Enano is copyright © 2006-2007 Dan Fuhry. For legal information, along with a list of libraries that Enano
23
+ − 383
uses, please see <a href="http://enanocms.org/Legal_information">Legal Information</a>.</p>
0
+ − 384
<p>The developers and maintainers of Enano strongly believe that software should not only be free to use, but free to be modified,
+ − 385
distributed, and used to create derivative works. For more information about Free Software, check out the
+ − 386
<a href="http://en.wikipedia.org/wiki/Free_Software" onclick="window.open(this.href); return false;">Wikipedia page</a> or
+ − 387
the <a href="http://www.fsf.org/" onclick="window.open(this.href); return false;">Free Software Foundation's</a> homepage.</p>
+ − 388
<p>This program is Free Software; you can redistribute it and/or modify it under the terms of the GNU General Public License
+ − 389
as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.</p>
+ − 390
<p>This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
+ − 391
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.</p>
+ − 392
<p>You should have received <a href="<?php echo makeUrlNS('Special', 'GNU_General_Public_License'); ?>">a copy of
+ − 393
the GNU General Public License</a> along with this program; if not, write to:</p>
+ − 394
<p style="margin-left 2em;">Free Software Foundation, Inc.,<br />
+ − 395
51 Franklin Street, Fifth Floor<br />
+ − 396
Boston, MA 02110-1301, USA</p>
129
0b5244001799
Rebranded as 1.0.1.1; fixed category page drawing bug; updated link to GPL in the about page to the GPLv2
Dan
diff
changeset
+ − 397
<p>Alternatively, you can <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.html">read it online</a>.</p>
0
+ − 398
</td></tr>
+ − 399
<tr>
+ − 400
<td class="row2" colspan="2">
53
+ − 401
<table border="0" style="margin: 0 auto; background: none; width: 100%;" cellpadding="5">
0
+ − 402
<tr>
53
+ − 403
<td style="text-align: center;">
87
570f68c3fe36
Redid stupid fading button code and fixed several RC2 bugs in the upgrade schema; 1.0.1 release candidate
Dan
diff
changeset
+ − 404
<?php echo $template->fading_button; ?>
0
+ − 405
</td>
+ − 406
<td style="text-align: center;">
+ − 407
<a href="http://www.php.net/" onclick="window.open(this.href); return false;" style="background: none; padding: 0;">
+ − 408
<img alt="Written in PHP" src="<?php echo scriptPath; ?>/images/about-powered-php.png" style="border-width: 0px;" width="88" height="31" />
+ − 409
</a>
+ − 410
</td>
+ − 411
<td style="text-align: center;">
+ − 412
<a href="http://www.mysql.com/" onclick="window.open(this.href); return false;" style="background: none; padding: 0;">
+ − 413
<img alt="Database engine powered by MySQL" src="<?php echo scriptPath; ?>/images/about-powered-mysql.png" style="border-width: 0px;" width="88" height="31" />
+ − 414
</a>
+ − 415
</td>
+ − 416
</tr>
+ − 417
</table>
+ − 418
</td>
+ − 419
</tr>
132
0ae1b281a884
[sync only] Minor display change in Special:About_Enano; added initial PHP function for password strength testing
Dan
diff
changeset
+ − 420
<tr><td style="width: 100px;" class="row1"><a href="http://enanocms.org">Enano</a> version:</td><td class="row1"><?php echo enano_version(true) . ' (' . enano_codename() . ')'; ?></td></tr>
0
+ − 421
<tr><td style="width: 100px;" class="row2">Web server:</td><td class="row2"><?php if(isset($_SERVER['SERVER_SOFTWARE'])) echo $_SERVER['SERVER_SOFTWARE']; else echo 'Unable to determine web server software.'; ?></td></tr>
+ − 422
<tr><td style="width: 100px;" class="row1">Server platform:</td><td class="row1"><?php echo $platform; ?></td></tr>
+ − 423
<tr><td style="width: 100px;" class="row2"><a href="http://www.php.net/">PHP</a> version:</td><td class="row2"><?php echo PHP_VERSION; ?></td></tr>
+ − 424
<tr><td style="width: 100px;" class="row1"><a href="http://www.mysql.com/">MySQL</a> version:</td><td class="row1"><?php echo mysql_get_server_info($db->_conn); ?></td></tr>
+ − 425
</table>
+ − 426
</div>
+ − 427
<?php
+ − 428
$template->footer();
+ − 429
}
+ − 430
+ − 431
function page_Special_GNU_General_Public_License()
+ − 432
{
+ − 433
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 434
$template->header();
+ − 435
if(file_exists(ENANO_ROOT.'/GPL'))
+ − 436
{
+ − 437
echo '<p>The following text represents the license that the <a href="'.makeUrlNS('Special', 'About_Enano').'">Enano</a> content management system is under. To make it easier to read, the text has been wiki-formatted; in no other way has it been changed.</p>';
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
diff
changeset
+ − 438
echo RenderMan::render( file_get_contents ( ENANO_ROOT . '/GPL' ) );
0
+ − 439
}
+ − 440
else
+ − 441
{
36
+ − 442
echo '<p>It appears that the file "GPL" is missing from your Enano installation. You may find a wiki-formatted copy of the GPL at: <a href="http://enanocms.org/GPL">http://enanocms.org/GPL</a>.</p>';
0
+ − 443
}
+ − 444
$template->footer();
+ − 445
}
+ − 446
83
+ − 447
function page_Special_TagCloud()
+ − 448
{
+ − 449
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 450
+ − 451
$template->header();
+ − 452
+ − 453
if ( $tag = $paths->getParam(0) )
+ − 454
{
+ − 455
$tag = sanitize_tag($tag);
+ − 456
$q = $db->sql_query('SELECT page_id, namespace FROM '.table_prefix.'tags WHERE tag_name=\'' . $db->escape($tag) . '\';');
+ − 457
if ( !$q )
+ − 458
$db->_die();
+ − 459
if ( $row = $db->fetchrow() )
+ − 460
{
+ − 461
echo '<div class="tblholder">
+ − 462
<table border="0" cellspacing="1" cellpadding="4">';
+ − 463
echo '<tr><th colspan="2">Pages tagged "' . htmlspecialchars($tag) . '"</th></tr>';
+ − 464
echo '<tr>';
+ − 465
$i = 0;
+ − 466
$td_class = 'row1';
+ − 467
do
+ − 468
{
+ − 469
if ( $i % 2 == 0 && $i > 1 )
+ − 470
{
+ − 471
$td_class = ( $td_class == 'row2' ) ? 'row1' : 'row2';
+ − 472
echo '</tr><tr>';
+ − 473
}
+ − 474
$i++;
+ − 475
$title = get_page_title_ns($row['page_id'], $row['namespace']);
+ − 476
if ( $row['namespace'] != 'Article' && isset($paths->nslist[$row['namespace']]) )
+ − 477
$title = $paths->nslist[$row['namespace']] . $title;
+ − 478
$url = makeUrlNS($row['namespace'], $row['page_id']);
+ − 479
$class = ( isPage( $paths->nslist[$row['namespace']] . $row['page_id'] ) ) ? '' : ' class="wikilink-nonexistent"';
+ − 480
$link = '<a href="' . htmlspecialchars($url) . '"' . $class . '>' . htmlspecialchars($title) . '</a>';
+ − 481
echo "<td class=\"$td_class\" style=\"width: 50%;\">$link</td>";
+ − 482
// " workaround for jEdit highlighting bug
+ − 483
}
+ − 484
while ( $row = $db->fetchrow() );
+ − 485
while ( $i % 2 > 0 )
+ − 486
{
+ − 487
$i++;
+ − 488
echo "<td class=\"$td_class\" style=\"width: 50%;\"></td>";
+ − 489
}
+ − 490
// " workaround for jEdit highlighting bug
+ − 491
echo '<tr>
+ − 492
<th colspan="2" class="subhead"><a href="' . makeUrlNS('Special', 'TagCloud') . '" style="color: white;">« Return to tag cloud</a></th>
+ − 493
</tr>';
+ − 494
echo '</table>';
+ − 495
echo '</div>';
+ − 496
}
+ − 497
}
+ − 498
else
+ − 499
{
+ − 500
$cloud = new TagCloud();
+ − 501
+ − 502
$q = $db->sql_query('SELECT tag_name FROM '.table_prefix.'tags;');
+ − 503
if ( !$q )
+ − 504
$db->_die();
+ − 505
if ( $db->numrows() < 1 )
+ − 506
{
+ − 507
echo '<p>No pages are tagged yet.</p>';
+ − 508
}
+ − 509
else
+ − 510
{
+ − 511
echo '<h3>Summary of page tagging</h3>';
+ − 512
while ( $row = $db->fetchrow() )
+ − 513
{
+ − 514
$cloud->add_word($row['tag_name']);
+ − 515
}
+ − 516
echo $cloud->make_html('normal');
+ − 517
echo '<p>Hover your mouse over a tag to see how many pages have the tag. Click on a tag to see a list of the pages that have it.</p>';
+ − 518
}
+ − 519
}
+ − 520
+ − 521
$template->footer();
+ − 522
}
+ − 523
+ − 524
// tag cloud sidebar block
+ − 525
function sidebar_add_tag_cloud()
+ − 526
{
+ − 527
global $db, $session, $paths, $template, $plugins; // Common objects
+ − 528
$cloud = new TagCloud();
+ − 529
+ − 530
$q = $db->sql_query('SELECT tag_name FROM '.table_prefix.'tags;');
+ − 531
if ( !$q )
+ − 532
$db->_die();
+ − 533
if ( $db->numrows() < 1 )
+ − 534
{
+ − 535
$sb_html = 'No pages are tagged yet.';
+ − 536
}
+ − 537
else
+ − 538
{
+ − 539
while ( $row = $db->fetchrow() )
+ − 540
{
+ − 541
$cloud->add_word($row['tag_name']);
+ − 542
}
+ − 543
$sb_html = $cloud->make_html('small', 'justify') . '<br /><a style="text-align: center;" href="' . makeUrlNS('Special', 'TagCloud') . '">Larger version</a>';
+ − 544
}
+ − 545
$template->sidebar_widget('Tag cloud', "<div style='padding: 5px;'>$sb_html</div>");
+ − 546
}
+ − 547
+ − 548
$plugins->attachHook('compile_template', 'sidebar_add_tag_cloud();');
+ − 549
0
+ − 550
?>