index.php
author Dan
Sun, 28 Mar 2010 21:49:26 -0400
changeset 1226 de56132c008d
parent 1149 be4feea8872a
child 1227 bdac73ed481e
permissions -rw-r--r--
Introduced configurability for gzip compression. Fixes issue 18.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     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
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     4
 * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
1081
745200a9cc2a Fixed some upgrade bugs; added support for choosing one's own date/time formats; rebrand as 1.1.7
Dan
parents: 1074
diff changeset
     5
 * Copyright (C) 2006-2009 Dan Fuhry
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     6
 *
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     7
 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     8
 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     9
 *
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    10
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    11
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    12
 *
246
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 183
diff changeset
    13
 * @package Enano
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 183
diff changeset
    14
 * @subpackage Frontend
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    15
 */
246
c9fd175289aa Cleaned up some HTML in the installer; corrected some phpDoc syntax errors
Dan
parents: 183
diff changeset
    16
 
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    17
define('ENANO_INTERFACE_INDEX', '');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    18
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    19
// start up Enano
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    20
require('includes/common.php');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    21
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    22
// decide on HTML compacting
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    23
$aggressive_optimize_html = !defined('ENANO_DEBUG') && !isset($_GET['nocompress']);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    24
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    25
// Set up gzip encoding before any output is sent
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    26
global $do_gzip;
1226
de56132c008d Introduced configurability for gzip compression. Fixes issue 18.
Dan
parents: 1149
diff changeset
    27
$do_gzip = !defined('ENANO_DEBUG') && getConfig('gzip_output', false) == 1 && !isset($_GET['disable_builtin_gzip']);
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    28
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    29
error_reporting(E_ALL);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    30
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    31
if($aggressive_optimize_html || $do_gzip)
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    32
{
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    33
  ob_start();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    34
}
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    35
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    36
global $db, $session, $paths, $template, $plugins; // Common objects
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    37
$page_timestamp = time();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    38
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    39
if ( !isset($_GET['do']) )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    40
{
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    41
  $_GET['do'] = 'view';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    42
}
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    43
switch($_GET['do'])
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    44
{
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    45
  default:
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    46
    $code = $plugins->setHook('page_action');
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    47
    ob_start();
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    48
    foreach ( $code as $cmd )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    49
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    50
      eval($cmd);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    51
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    52
    if ( $contents = ob_get_contents() )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    53
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    54
      ob_end_clean();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    55
      echo $contents;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    56
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    57
    else
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    58
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    59
      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>');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    60
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    61
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    62
  case 'view':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    63
    // echo PageUtils::getpage($paths->page, true, ( (isset($_GET['oldid'])) ? $_GET['oldid'] : false ));
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    64
    $rev_id = ( (isset($_GET['oldid'])) ? intval($_GET['oldid']) : 0 );
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    65
    $page = new PageProcessor( $paths->page_id, $paths->namespace, $rev_id );
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    66
    // Feed this PageProcessor to the template processor. This prevents $template from starting another
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    67
    // PageProcessor when we already have one going.
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    68
    $template->set_page($page);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    69
    $page->send_headers = true;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    70
    $page->allow_redir = ( !isset($_GET['redirect']) || (isset($_GET['redirect']) && $_GET['redirect'] !== 'no') );
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    71
    $pagepass = ( isset($_REQUEST['pagepass']) ) ? sha1($_REQUEST['pagepass']) : '';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    72
    $page->password = $pagepass;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    73
    $page->send(true);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    74
    $page_timestamp = $page->revision_time;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    75
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    76
  case 'comments':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    77
    $output->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    78
    require_once(ENANO_ROOT.'/includes/pageutils.php');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    79
    $sub = ( isset ($_GET['sub']) ) ? $_GET['sub'] : false;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    80
    switch($sub)
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    81
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    82
      case 'admin':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    83
      default:
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    84
        $act = ( isset ($_GET['action']) ) ? $_GET['action'] : false;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    85
        $id = ( isset ($_GET['id']) ) ? intval($_GET['id']) : -1;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    86
        echo PageUtils::comments_html($paths->page_id, $paths->namespace, $act, Array('id'=>$id));
285
7846d45bd250 Changed all urlname/page_id columns to varchar(255) because 63 characters just isn't long enough
Dan
parents: 256
diff changeset
    87
        break;
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    88
      case 'postcomment':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    89
        if(empty($_POST['name']) ||
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    90
           empty($_POST['subj']) ||
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    91
           empty($_POST['text'])
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    92
           ) { echo 'Invalid request'; break; }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    93
        $cid = ( isset($_POST['captcha_id']) ) ? $_POST['captcha_id'] : false;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    94
        $cin = ( isset($_POST['captcha_input']) ) ? $_POST['captcha_input'] : false;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    95
        
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    96
        require_once('includes/comment.php');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    97
        $comments = new Comments($paths->page_id, $paths->namespace);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    98
        
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
    99
        $submission = array(
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   100
            'mode' => 'submit',
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   101
            'captcha_id' => $cid,
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   102
            'captcha_code' => $cin,
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   103
            'name' => $_POST['name'],
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   104
            'subj' => $_POST['subj'],
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   105
            'text' => $_POST['text'],
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   106
          );
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   107
        
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   108
        $result = $comments->process_json($submission);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   109
        if ( $result['mode'] == 'error' )
337
491518997ae5 Made CAPTCHA for guests' page editing work with the non-AJAX interface
Dan
parents: 334
diff changeset
   110
        {
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   111
          echo '<div class="error-box">' . htmlspecialchars($result['error']) . '</div>';
468
194a19711346 Fixed the fact that cron just didn't work at all (brain fart that day or something)
Dan
parents: 411
diff changeset
   112
        }
194a19711346 Fixed the fact that cron just didn't work at all (brain fart that day or something)
Dan
parents: 411
diff changeset
   113
        else
194a19711346 Fixed the fact that cron just didn't work at all (brain fart that day or something)
Dan
parents: 411
diff changeset
   114
        {
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   115
          echo '<div class="info-box">' . $lang->get('comment_msg_comment_posted') . '</div>';
468
194a19711346 Fixed the fact that cron just didn't work at all (brain fart that day or something)
Dan
parents: 411
diff changeset
   116
        }
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   117
        
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   118
        echo PageUtils::comments_html($paths->page_id, $paths->namespace);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   119
        break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   120
      case 'editcomment':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   121
        if(!isset($_GET['id']) || ( isset($_GET['id']) && !preg_match('#^([0-9]+)$#', $_GET['id']) )) { echo '<p>Invalid comment ID</p>'; break; }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   122
        $q = $db->sql_query('SELECT subject,comment_data,comment_id FROM '.table_prefix.'comments WHERE comment_id='.$_GET['id']);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   123
        if(!$q) $db->_die('The comment data could not be selected.');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   124
        $row = $db->fetchrow();
408
7ecbe721217c Modified editor and rename functions to go through the API when rolling back. This causes rollbacks to be logged.
Dan
parents: 391
diff changeset
   125
        $db->free_result();
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   126
        $row['subject'] = str_replace('\'', '&#039;', $row['subject']);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   127
        echo '<form action="'.makeUrl($paths->page, 'do=comments&amp;sub=savecomment').'" method="post">';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   128
        echo "<br /><div class='tblholder'><table border='0' width='100%' cellspacing='1' cellpadding='4'>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   129
                <tr><td class='row1'>" . $lang->get('comment_postform_field_subject') . "</td><td class='row1'><input type='text' name='subj' value='{$row['subject']}' /></td></tr>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   130
                <tr><td class='row2'>" . $lang->get('comment_postform_field_comment') . "</td><td class='row2'><textarea rows='10' cols='40' style='width: 98%;' name='text'>{$row['comment_data']}</textarea></td></tr>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   131
                <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='" . $lang->get('etc_save_changes') . "' /></td></tr>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   132
              </table></div>";
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   133
        echo '</form>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   134
        break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   135
      case 'savecomment':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   136
        if(empty($_POST['subj']) || empty($_POST['text'])) { echo '<p>Invalid request</p>'; break; }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   137
        $r = PageUtils::savecomment_neater($paths->page_id, $paths->namespace, $_POST['subj'], $_POST['text'], (int)$_POST['id']);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   138
        if($r != 'good') { echo "<pre>$r</pre>"; break; }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   139
        echo PageUtils::comments_html($paths->page_id, $paths->namespace);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   140
        break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   141
      case 'deletecomment':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   142
        if(!empty($_GET['id']))
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   143
        {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   144
          PageUtils::deletecomment_neater($paths->page_id, $paths->namespace, (int)$_GET['id']);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   145
        }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   146
        echo PageUtils::comments_html($paths->page_id, $paths->namespace);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   147
        break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   148
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   149
    $output->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   150
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   151
  case 'edit':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   152
    if(isset($_POST['_cancel']))
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   153
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   154
      redirect(makeUrl($paths->page), '', '', 0);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   155
      break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   156
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   157
    require_once(ENANO_ROOT.'/includes/pageutils.php');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   158
    if(isset($_POST['_save']))
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   159
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   160
      $captcha_valid = true;
337
491518997ae5 Made CAPTCHA for guests' page editing work with the non-AJAX interface
Dan
parents: 334
diff changeset
   161
      if ( !$session->user_logged_in && getConfig('guest_edit_require_captcha') == '1' )
491518997ae5 Made CAPTCHA for guests' page editing work with the non-AJAX interface
Dan
parents: 334
diff changeset
   162
      {
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   163
        $captcha_valid = false;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   164
        if ( isset($_POST['captcha_id']) && isset($_POST['captcha_code']) )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   165
        {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   166
          $hash_correct = strtolower($session->get_captcha($_POST['captcha_id']));
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   167
          $hash_input   = strtolower($_POST['captcha_code']);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   168
          if ( $hash_input === $hash_correct )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   169
            $captcha_valid = true;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   170
        }
337
491518997ae5 Made CAPTCHA for guests' page editing work with the non-AJAX interface
Dan
parents: 334
diff changeset
   171
      }
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   172
      if ( $captcha_valid )
160
87a988ca4ff4 Fixed: wiki mode edit notice should be shown on fallback editor now
Dan
parents: 142
diff changeset
   173
      {
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   174
        $e = PageUtils::savepage($paths->page_id, $paths->namespace, $_POST['page_text'], $_POST['edit_summary'], isset($_POST['minor']));
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   175
        if ( $e == 'good' )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   176
        {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   177
          redirect(makeUrl($paths->page), $lang->get('editor_msg_save_success_title'), $lang->get('editor_msg_save_success_body'), 3);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   178
        }
160
87a988ca4ff4 Fixed: wiki mode edit notice should be shown on fallback editor now
Dan
parents: 142
diff changeset
   179
      }
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   180
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   181
    $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   182
    if ( isset($captcha_valid) )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   183
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   184
      echo '<div class="usermessage">' . $lang->get('editor_err_captcha_wrong') . '</div>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   185
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   186
    if(isset($_POST['_preview']))
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   187
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   188
      $text = $_POST['page_text'];
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   189
      $edsumm = $_POST['edit_summary'];
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   190
      echo PageUtils::genPreview($_POST['page_text']);
391
85f91037cd4f Localization is FINISHED, DAMN IT HELLAH YEAH! OVER WITH! Man, it feels to get that off my chest. Release is in under 48 hours, folks. And we're ready for it.
Dan
parents: 383
diff changeset
   191
      $text = htmlspecialchars($text);
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   192
      $revid = 0;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   193
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   194
    else
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   195
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   196
      $revid = ( isset($_GET['revid']) ) ? intval($_GET['revid']) : 0;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   197
      $page = new PageProcessor($paths->page_id, $paths->namespace, $revid);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   198
      $text = $page->fetch_source();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   199
      $edsumm = '';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   200
      // $text = RenderMan::getPage($paths->cpage['urlname_nons'], $paths->namespace, 0, false, false, false, false);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   201
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   202
    if ( $revid > 0 )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   203
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   204
      $time = $page->revision_time;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   205
      // Retrieve information about this revision and the current one
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   206
      $q = $db->sql_query('SELECT l1.author AS currentrev_author, l2.author AS oldrev_author FROM ' . table_prefix . 'logs AS l1
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   207
LEFT JOIN ' . table_prefix . 'logs AS l2
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   208
  ON ( l2.log_id = ' . $revid . '
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   209
       AND l2.log_type  = \'page\'
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   210
       AND l2.action    = \'edit\'
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   211
       AND l2.page_id   = \'' . $db->escape($paths->page_id) . '\'
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   212
       AND l2.namespace = \'' . $db->escape($paths->namespace) . '\'
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   213
       AND l1.is_draft != 1
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   214
      )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   215
WHERE l1.log_type  = \'page\'
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   216
  AND l1.action    = \'edit\'
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   217
  AND l1.page_id   = \'' . $db->escape($paths->page_id) . '\'
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   218
  AND l1.namespace = \'' . $db->escape($paths->namespace) . '\'
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   219
  AND l1.time_id > ' . $time . '
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   220
  AND l1.is_draft != 1
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   221
ORDER BY l1.time_id DESC;');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   222
      if ( !$q )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   223
        $db->die_json();
481
07bf15b066bc Hopefully completed rewrite and localization of rollback backend and interface
Dan
parents: 468
diff changeset
   224
      
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   225
      if ( $db->numrows() > 0 )
481
07bf15b066bc Hopefully completed rewrite and localization of rollback backend and interface
Dan
parents: 468
diff changeset
   226
      {
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   227
        echo '<div class="usermessage">' . $lang->get('editor_msg_editing_old_revision') . '</div>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   228
        
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   229
        $rev_count = $db->numrows() - 2;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   230
        $row = $db->fetchrow();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   231
        $undo_info = array(
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   232
          'old_author'     => $row['oldrev_author'],
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   233
          'current_author' => $row['currentrev_author'],
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   234
          'undo_count'     => max($rev_count, 1),
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   235
          'last_rev_id'    => $revid
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   236
        );
481
07bf15b066bc Hopefully completed rewrite and localization of rollback backend and interface
Dan
parents: 468
diff changeset
   237
      }
07bf15b066bc Hopefully completed rewrite and localization of rollback backend and interface
Dan
parents: 468
diff changeset
   238
      else
07bf15b066bc Hopefully completed rewrite and localization of rollback backend and interface
Dan
parents: 468
diff changeset
   239
      {
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   240
        $revid = 0;
481
07bf15b066bc Hopefully completed rewrite and localization of rollback backend and interface
Dan
parents: 468
diff changeset
   241
      }
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   242
      $db->free_result();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   243
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   244
    echo '
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   245
      <form action="'.makeUrl($paths->page, 'do=edit').'" method="post" enctype="multipart/form-data">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   246
      <br />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   247
      <textarea name="page_text" rows="20" cols="60" style="width: 97%;">'.$text.'</textarea><br />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   248
      <br />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   249
      ';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   250
    $edsumm = ( $revid > 0 ) ? $lang->get('editor_reversion_edit_summary', $undo_info) : $edsumm;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   251
    echo $lang->get('editor_lbl_edit_summary') . ' <input name="edit_summary" type="text" size="40" value="' . htmlspecialchars($edsumm) . '" /><br /><label><input type="checkbox" name="minor" /> ' . $lang->get('editor_lbl_minor_edit_field') . '</label><br />';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   252
    if ( !$session->user_logged_in && getConfig('guest_edit_require_captcha') == '1' )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   253
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   254
      echo '<br /><table border="0"><tr><td>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   255
      echo '<b>' . $lang->get('editor_lbl_field_captcha') . '</b><br />'
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   256
           . '<br />'
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   257
           . $lang->get('editor_msg_captcha_pleaseenter') . '<br /><br />'
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   258
           . $lang->get('editor_msg_captcha_blind');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   259
      echo '</td><td>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   260
      $hash = $session->make_captcha();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   261
      echo '<img src="' . makeUrlNS('Special', "Captcha/$hash") . '" onclick="this.src+=\'/a\'" style="cursor: pointer;" /><br />';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   262
      echo '<input type="hidden" name="captcha_id" value="' . $hash . '" />';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   263
      echo $lang->get('editor_lbl_field_captcha_code') . ' <input type="text" name="captcha_code" value="" size="9" />';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   264
      echo '</td></tr></table>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   265
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   266
    echo '<br />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   267
        <input type="submit" name="_save"    value="' . $lang->get('editor_btn_save') . '" style="font-weight: bold;" />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   268
        <input type="submit" name="_preview" value="' . $lang->get('editor_btn_preview') . '" />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   269
        <input type="submit" name="_revert"  value="' . $lang->get('editor_btn_revert') . '" />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   270
        <input type="submit" name="_cancel"  value="' . $lang->get('editor_btn_cancel') . '" />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   271
      </form>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   272
    ';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   273
    if ( getConfig('wiki_edit_notice', '0') == '1' )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   274
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   275
      $notice = getConfig('wiki_edit_notice_text');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   276
      echo RenderMan::render($notice);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   277
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   278
    $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   279
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   280
  case 'viewsource':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   281
    $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   282
    $text = RenderMan::getPage($paths->page_id, $paths->namespace, 0, false, false, false, false);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   283
    $text = htmlspecialchars($text);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   284
    echo '
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   285
      <form action="'.makeUrl($paths->page, 'do=edit').'" method="post">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   286
      <br />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   287
      <textarea readonly="readonly" name="page_text" rows="20" cols="60" style="width: 97%;">'.$text.'</textarea>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   288
    echo '<br />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   289
        <input type="submit" name="_cancel" value="' . $lang->get('editor_btn_closeviewer') . '" />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   290
      </form>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   291
    ';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   292
    $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   293
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   294
  case 'history':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   295
    require_once(ENANO_ROOT.'/includes/pageutils.php');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   296
    $hist = PageUtils::histlist($paths->page_id, $paths->namespace);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   297
    $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   298
    echo $hist;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   299
    $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   300
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   301
  case 'rollback':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   302
    $id = (isset($_GET['id'])) ? $_GET['id'] : false;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   303
    if(!$id || !ctype_digit($id)) die_friendly('Invalid action ID', '<p>The URL parameter "id" is not an integer. Exiting to prevent nasties like SQL injection, etc.</p>');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   304
    
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   305
    $id = intval($id);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   306
    
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   307
    $page = new PageProcessor($paths->page_id, $paths->namespace);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   308
    $result = $page->rollback_log_entry($id);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   309
    
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   310
    if ( $result['success'] )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   311
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   312
      $result = $lang->get("page_msg_rb_success_{$result['action']}", array('dateline' => $result['dateline']));
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   313
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   314
    else
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   315
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   316
      $result = $lang->get("page_err_{$result['error']}", array('action' => @$result['action']));
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   317
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   318
    
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   319
    $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   320
    echo '<p>'.$result.' <a href="'.makeUrl($paths->page).'">' . $lang->get('etc_return_to_page') . '</a></p>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   321
    $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   322
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   323
  case 'catedit':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   324
    require_once(ENANO_ROOT.'/includes/pageutils.php');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   325
    if(isset($_POST['__enanoSaveButton']))
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   326
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   327
      unset($_POST['__enanoSaveButton']);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   328
      $val = PageUtils::catsave($paths->page_id, $paths->namespace, $_POST);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   329
      if($val == 'GOOD')
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   330
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   331
        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;
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   332
      } else {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   333
        die_friendly('Error saving category information', '<p>'.$val.'</p>');
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   334
      }
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   335
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   336
    elseif(isset($_POST['__enanoCatCancel']))
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   337
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   338
      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;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   339
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   340
    $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   341
    $c = PageUtils::catedit_raw($paths->page_id, $paths->namespace);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   342
    echo $c[1];
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   343
    $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   344
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   345
  case 'moreoptions':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   346
    $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   347
    echo '<div class="menu_nojs" style="width: 150px; padding: 0;"><ul style="display: block;"><li><div class="label">' . $lang->get('ajax_lbl_moreoptions_nojs') . '</div><div style="clear: both;"></div></li>'.$template->toolbar_menu.'</ul></div>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   348
    $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   349
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   350
  case 'protect':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   351
    if ( !$session->sid_super )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   352
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   353
      redirect(makeUrlNS('Special', "Login/{$paths->page}", 'target_do=protect&level=' . $session->user_level, false), $lang->get('etc_access_denied_short'), $lang->get('etc_access_denied_need_reauth'), 0);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   354
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   355
    
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   356
    if ( isset($_POST['level']) && isset($_POST['reason']) )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   357
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   358
      $level = intval($_POST['level']);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   359
      if ( !in_array($level, array(PROTECT_FULL, PROTECT_SEMI, PROTECT_NONE)) )
907
44851d7e9bda Live Re-Auth is now required for deleting pages, editing ACLs, protecting pages, and clearing logs. Committing in a hurry as a storm is coming in, hope everything is in there.
Dan
parents: 906
diff changeset
   360
      {
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   361
        $errors[] = 'bad level';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   362
      }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   363
      $reason = trim($_POST['reason']);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   364
      if ( empty($reason) )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   365
      {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   366
        $errors[] = $lang->get('onpage_protect_err_need_reason');
907
44851d7e9bda Live Re-Auth is now required for deleting pages, editing ACLs, protecting pages, and clearing logs. Committing in a hurry as a storm is coming in, hope everything is in there.
Dan
parents: 906
diff changeset
   367
      }
44851d7e9bda Live Re-Auth is now required for deleting pages, editing ACLs, protecting pages, and clearing logs. Committing in a hurry as a storm is coming in, hope everything is in there.
Dan
parents: 906
diff changeset
   368
      
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   369
      $page = new PageProcessor($paths->page_id, $paths->namespace);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   370
      $result = $page->protect_page($level, $reason);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   371
      if ( $result['success'] )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   372
      {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   373
        redirect(makeUrl($paths->page), $lang->get('page_protect_lbl_success_title'), $lang->get('page_protect_lbl_success_body', array('page_link' => makeUrl($paths->page, false, true))), 3);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   374
      }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   375
      else
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   376
      {
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   377
        $errors[] = $lang->get('page_err_' . $result['error']);
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   378
      }
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   379
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   380
    $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   381
    ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   382
    <form action="<?php echo makeUrl($paths->page, 'do=protect'); ?>" method="post">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   383
      <h3><?php echo $lang->get('onpage_protect_heading'); ?></h3>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   384
      <p><?php echo $lang->get('onpage_protect_msg_select_level'); ?></p>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   385
      
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   386
      <?php
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   387
      if ( !empty($errors) )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   388
      {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   389
        echo '<ul><li>' . implode('</li><li>', $errors) . '</li></ul>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   390
      }
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   391
      ?>
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   392
      
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   393
      <div class="protectlevel" style="line-height: 22px; margin-left: 17px;">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   394
        <label>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   395
          <input type="radio" name="level" value="<?php echo PROTECT_FULL; ?>" />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   396
          <?php echo gen_sprite(cdnPath . '/images/protect-icons.png', 22, 22, 0, 0); ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   397
          <?php echo $lang->get('onpage_protect_btn_full'); ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   398
        </label>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   399
      </div>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   400
      <div class="protectlevel_hint" style="font-size: smaller; margin-left: 68px;">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   401
        <?php echo $lang->get('onpage_protect_btn_full_hint'); ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   402
      </div>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   403
      
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   404
      <div class="protectlevel" style="line-height: 22px; margin-left: 17px;">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   405
        <label>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   406
          <input type="radio" name="level" value="<?php echo PROTECT_SEMI; ?>" />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   407
          <?php echo gen_sprite(cdnPath . '/images/protect-icons.png', 22, 22, 22, 0); ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   408
          <?php echo $lang->get('onpage_protect_btn_semi'); ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   409
        </label>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   410
      </div>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   411
      <div class="protectlevel_hint" style="font-size: smaller; margin-left: 68px;">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   412
        <?php echo $lang->get('onpage_protect_btn_semi_hint'); ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   413
      </div>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   414
      
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   415
      <div class="protectlevel" style="line-height: 22px; margin-left: 17px;">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   416
        <label>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   417
          <input type="radio" name="level" value="<?php echo PROTECT_NONE; ?>" />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   418
          <?php echo gen_sprite(cdnPath . '/images/protect-icons.png', 22, 22, 44, 0); ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   419
          <?php echo $lang->get('onpage_protect_btn_none'); ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   420
        </label>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   421
      </div>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   422
      <div class="protectlevel_hint" style="font-size: smaller; margin-left: 68px;">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   423
        <?php echo $lang->get('onpage_protect_btn_none_hint'); ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   424
      </div>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   425
      
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   426
      <table style="margin-left: 1em;" cellspacing="10">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   427
        <tr>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   428
          <td valign="top">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   429
            <?php echo $lang->get('onpage_protect_lbl_reason'); ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   430
          </td>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   431
          <td>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   432
            <input type="text" name="reason" size="40" /><br />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   433
            <small><?php echo $lang->get('onpage_protect_lbl_reason_hint'); ?></small>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   434
          </td>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   435
        </tr>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   436
      </table>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   437
                            
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   438
      <p>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   439
        <input type="submit" value="<?php echo htmlspecialchars($lang->get('page_protect_btn_submit')) ?>" style="font-weight: bold;" />
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   440
        <a class="abutton" href="<?php echo makeUrl($paths->page, false, true); ?>"><?php echo $lang->get('etc_cancel'); ?></a>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   441
      </p> 
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   442
    </form>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   443
    <?php
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   444
    $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   445
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   446
  case 'rename':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   447
    require_once(ENANO_ROOT.'/includes/pageutils.php');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   448
    if(!empty($_POST['newname']))
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   449
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   450
      $r = PageUtils::rename($paths->page_id, $paths->namespace, $_POST['newname']);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   451
      die_friendly($lang->get('page_rename_success_title'), '<p>'.nl2br($r).' <a href="'.makeUrl($paths->page).'">' . $lang->get('etc_return_to_page') . '</a>.</p>');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   452
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   453
    $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   454
    ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   455
    <form action="<?php echo makeUrl($paths->page, 'do=rename'); ?>" method="post">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   456
      <?php if(isset($_POST['newname'])) echo '<p style="color: red;">' . $lang->get('page_rename_err_need_name') . '</p>'; ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   457
      <p><?php echo $lang->get('page_rename_lbl'); ?></p>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   458
      <p><input type="text" name="newname" size="40" /></p>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   459
      <p><input type="submit" value="<?php echo htmlspecialchars($lang->get('page_rename_btn_submit')); ?>" style="font-weight: bold;" /></p> 
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   460
    </form>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   461
    <?php
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   462
    $template->footer();    
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   463
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   464
  case 'flushlogs':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   465
    if(!$session->get_permissions('clear_logs'))
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   466
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   467
      die_friendly($lang->get('etc_access_denied_short'), '<p>' . $lang->get('etc_access_denied') . '</p>');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   468
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   469
    if ( !$session->sid_super )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   470
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   471
      redirect(makeUrlNS('Special', "Login/{$paths->page}", 'target_do=flushlogs&level=' . $session->user_level, false), $lang->get('etc_access_denied_short'), $lang->get('etc_access_denied_need_reauth'), 0);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   472
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   473
    require_once(ENANO_ROOT.'/includes/pageutils.php');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   474
    if(isset($_POST['_downthejohn']))
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   475
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   476
      $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   477
        $result = PageUtils::flushlogs($paths->page_id, $paths->namespace);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   478
        echo '<p>'.$result.' <a href="'.makeUrl($paths->page).'">' . $lang->get('etc_return_to_page') . '</a>.</p>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   479
      $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   480
      break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   481
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   482
    $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   483
      ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   484
      <form action="<?php echo makeUrl($paths->page, 'do=flushlogs'); ?>" method="post">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   485
         <?php echo $lang->get('page_flushlogs_warning_stern'); ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   486
         <p><input type="submit" name="_downthejohn" value="<?php echo htmlspecialchars($lang->get('page_flushlogs_btn_submit')); ?>" style="color: red; font-weight: bold;" /></p>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   487
      </form>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   488
      <?php
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   489
    $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   490
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   491
  case 'delvote':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   492
    require_once(ENANO_ROOT.'/includes/pageutils.php');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   493
    if(isset($_POST['_ballotbox']))
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   494
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   495
      $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   496
      $result = PageUtils::delvote($paths->page_id, $paths->namespace);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   497
      echo '<p>'.$result.' <a href="'.makeUrl($paths->page).'">' . $lang->get('etc_return_to_page') . '</a>.</p>';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   498
      $template->footer();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   499
      break;
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   500
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   501
    $template->header();
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   502
      ?>
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   503
      <form action="<?php echo makeUrl($paths->page, 'do=delvote'); ?>" method="post">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   504
         <?php
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   505
           echo $lang->get('page_delvote_warning_stern');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   506
           echo '<p>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   507
           switch($paths->cpage['delvotes'])
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   508
           {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   509
             case 0:  echo $lang->get('page_delvote_count_zero'); break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   510
             case 1:  echo $lang->get('page_delvote_count_one'); break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   511
             default: echo $lang->get('page_delvote_count_plural', array('delvotes' => $paths->cpage['delvotes'])); break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   512
           }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   513
           echo '</p>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   514
         ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   515
         <p><input type="submit" name="_ballotbox" value="<?php echo htmlspecialchars($lang->get('page_delvote_btn_submit')); ?>" /></p>
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   516
      </form>
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   517
      <?php
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   518
    $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   519
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   520
  case 'resetvotes':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   521
    require_once(ENANO_ROOT.'/includes/pageutils.php');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   522
    if(!$session->get_permissions('vote_reset'))
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   523
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   524
      die_friendly($lang->get('etc_access_denied_short'), '<p>' . $lang->get('etc_access_denied') . '</p>');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   525
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   526
    if(isset($_POST['_youmaylivealittlelonger']))
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   527
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   528
      $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   529
        $result = PageUtils::resetdelvotes($paths->page_id, $paths->namespace);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   530
        echo '<p>'.$result.' <a href="'.makeUrl($paths->page).'">' . $lang->get('etc_return_to_page') . '</a>.</p>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   531
      $template->footer();
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   532
      break;
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   533
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   534
    $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   535
      ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   536
      <form action="<?php echo makeUrl($paths->page, 'do=resetvotes'); ?>" method="post">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   537
        <p><?php echo $lang->get('ajax_delvote_reset_confirm'); ?></p>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   538
        <p><input type="submit" name="_youmaylivealittlelonger" value="<?php echo htmlspecialchars($lang->get('page_delvote_reset_btn_submit')); ?>" /></p>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   539
      </form>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   540
      <?php
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   541
    $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   542
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   543
  case 'deletepage':
1149
be4feea8872a Improved language for static HTML page delete interface
Dan
parents: 1082
diff changeset
   544
    if ( !$session->get_permissions('delete_page') )
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   545
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   546
      die_friendly($lang->get('etc_access_denied_short'), '<p>' . $lang->get('etc_access_denied') . '</p>');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   547
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   548
    if ( !$session->sid_super )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   549
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   550
      redirect(makeUrlNS('Special', "Login/{$paths->page}", 'target_do=deletepage&level=' . $session->user_level, false), $lang->get('etc_access_denied_short'), $lang->get('etc_access_denied_need_reauth'), 0);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   551
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   552
    
1149
be4feea8872a Improved language for static HTML page delete interface
Dan
parents: 1082
diff changeset
   553
    require_once(ENANO_ROOT . '/includes/pageutils.php');
be4feea8872a Improved language for static HTML page delete interface
Dan
parents: 1082
diff changeset
   554
    if ( isset($_POST['_adiossucker']) )
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   555
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   556
      $reason = ( isset($_POST['reason']) ) ? $_POST['reason'] : false;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   557
      if ( empty($reason) )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   558
        $error = $lang->get('ajax_delete_prompt_reason');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   559
      else
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   560
      {
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   561
        $template->header();
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   562
          $result = PageUtils::deletepage($paths->page_id, $paths->namespace, $reason);
220
d44492e34ab3 Failsafe page maintenance applets in index.php localized
Dan
parents: 213
diff changeset
   563
          echo '<p>'.$result.' <a href="'.makeUrl($paths->page).'">' . $lang->get('etc_return_to_page') . '</a>.</p>';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   564
        $template->footer();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   565
        break;
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   566
      }
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   567
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   568
    $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   569
      ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   570
      <form action="<?php echo makeUrl($paths->page, 'do=deletepage'); ?>" method="post">
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   571
         <?php echo $lang->get('page_delete_warning_stern'); ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   572
         <?php if ( isset($error) ) echo "<p>$error</p>"; ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   573
         <p><?php echo $lang->get('page_delete_lbl_reason'); ?> <input type="text" name="reason" size="50" /></p>
1149
be4feea8872a Improved language for static HTML page delete interface
Dan
parents: 1082
diff changeset
   574
         <p><input type="submit" name="_adiossucker" value="<?php echo htmlspecialchars($lang->get('page_delete_btn_submit')); ?>" style="font-weight: bold;" /></p>
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   575
      </form>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   576
      <?php
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   577
    $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   578
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   579
  case 'setwikimode':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   580
    if(!$session->get_permissions('set_wiki_mode'))
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   581
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   582
      die_friendly($lang->get('etc_access_denied_short'), '<p>' . $lang->get('etc_access_denied') . '</p>');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   583
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   584
    if ( isset($_POST['finish']) )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   585
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   586
      $level = intval($_POST['level']);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   587
      if ( !in_array($level, array(0, 1, 2) ) )
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   588
      {
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   589
        die_friendly('Invalid request', '<p>Level not specified</p>');
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   590
      }
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   591
      $q = $db->sql_query('UPDATE '.table_prefix.'pages SET wiki_mode=' . $level . ' WHERE urlname=\'' . $db->escape($paths->page_id) . '\' AND namespace=\'' . $paths->namespace . '\';');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   592
      if ( !$q )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   593
        $db->_die();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   594
      redirect(makeUrl($paths->page), htmlspecialchars($paths->cpage['name']), $lang->get('page_wikimode_success_redirect'), 2);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   595
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   596
    else
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   597
    {
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   598
      $template->header();
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   599
      if(!isset($_GET['level']) || ( isset($_GET['level']) && !preg_match('#^([0-9])$#', $_GET['level']))) die_friendly('Invalid request', '<p>Level not specified</p>');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   600
        $level = intval($_GET['level']);
97
293148ad7a70 Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents: 91
diff changeset
   601
        if ( !in_array($level, array(0, 1, 2) ) )
293148ad7a70 Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents: 91
diff changeset
   602
        {
293148ad7a70 Fallback non-JS wiki mode switch is now implemented (doh!)
Dan
parents: 91
diff changeset
   603
          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
   604
        }
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   605
      echo '<form action="' . makeUrl($paths->page, 'do=setwikimode', true) . '" method="post">';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   606
      echo '<input type="hidden" name="finish" value="foo" />';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   607
      echo '<input type="hidden" name="level" value="' . $level . '" />';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   608
      $level_txt = ( $level == 0 ) ? 'page_wikimode_level_off' : ( ( $level == 1 ) ? 'page_wikimode_level_on' : 'page_wikimode_level_global' );
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   609
      $blurb = ( $level == 0 || ( $level == 2 && getConfig('wiki_mode') != '1' ) ) ? 'page_wikimode_blurb_disable' : 'page_wikimode_blurb_enable';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   610
      ?>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   611
      <h3><?php echo $lang->get('page_wikimode_heading'); ?></h3>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   612
      <p><?php echo $lang->get($level_txt) . ' ' . $lang->get($blurb); ?></p>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   613
      <p><?php echo $lang->get('page_wikimode_warning'); ?></p>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   614
      <p><input type="submit" value="<?php echo htmlspecialchars($lang->get('page_wikimode_btn_submit')); ?>" /></p>
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   615
      <?php
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   616
      echo '</form>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   617
      $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   618
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   619
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   620
  case 'diff':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   621
    require_once(ENANO_ROOT.'/includes/pageutils.php');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   622
    require_once(ENANO_ROOT.'/includes/diff.php');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   623
    $template->header();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   624
    $id1 = ( isset($_GET['diff1']) ) ? (int)$_GET['diff1'] : false;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   625
    $id2 = ( isset($_GET['diff2']) ) ? (int)$_GET['diff2'] : false;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   626
    if ( !$id1 || !$id2 )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   627
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   628
      echo '<p>Invalid request.</p>';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   629
      $template->footer();
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   630
      break;
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   631
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   632
    if ( !ctype_digit($_GET['diff1']) || !ctype_digit($_GET['diff1']) )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   633
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   634
      echo '<p>SQL injection attempt</p>';
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   635
      $template->footer();
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   636
      break;
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   637
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   638
    echo PageUtils::pagediff($paths->page_id, $paths->namespace, $id1, $id2);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   639
    $template->footer();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   640
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   641
  case 'detag':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   642
    if ( $session->user_level < USER_LEVEL_ADMIN )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   643
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   644
      die_friendly($lang->get('etc_access_denied_short'), '<p>' . $lang->get('etc_access_denied') . '</p>');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   645
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   646
    if ( $paths->page_exists )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   647
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   648
      die_friendly($lang->get('etc_invalid_request_short'), '<p>' . $lang->get('page_detag_err_page_exists') . '</p>');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   649
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   650
    $q = $db->sql_query('DELETE FROM '.table_prefix.'tags WHERE page_id=\'' . $db->escape($paths->page_id) . '\' AND namespace=\'' . $paths->namespace . '\';');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   651
    if ( !$q )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   652
      $db->_die('Detag query, index.php:'.__LINE__);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   653
    die_friendly($lang->get('page_detag_success_title'), '<p>' . $lang->get('page_detag_success_body') . '</p>');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   654
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   655
  case 'aclmanager':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   656
    if ( !$session->sid_super )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   657
    {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   658
      redirect(makeUrlNS('Special', "Login/{$paths->page}", 'target_do=aclmanager&level=' . $session->user_level, false), $lang->get('etc_access_denied_short'), $lang->get('etc_access_denied_need_reauth'), 0);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   659
    }
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   660
    
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   661
    require_once(ENANO_ROOT.'/includes/pageutils.php');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   662
    $data = ( isset($_POST['data']) ) ? $_POST['data'] : Array('mode' => 'listgroups');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   663
    PageUtils::aclmanager($data);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   664
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   665
  case 'sql_report':
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   666
    $rev_id = ( (isset($_GET['oldid'])) ? intval($_GET['oldid']) : 0 );
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   667
    $page = new PageProcessor( $paths->page_id, $paths->namespace, $rev_id );
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   668
    $page->send_headers = true;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   669
    $pagepass = ( isset($_REQUEST['pagepass']) ) ? sha1($_REQUEST['pagepass']) : '';
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   670
    $page->password = $pagepass;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   671
    $page->send(true);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   672
    ob_end_clean();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   673
    ob_start();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   674
    $db->sql_report();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   675
    break;
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   676
}
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   677
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   678
// Generate an ETag
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   679
/*
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   680
// format: first 10 digits of SHA1 of page name, user id in hex, user and auth levels, page timestamp in hex
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   681
$etag = substr(sha1($paths->namespace . ':' . $paths->page_id), 0, 10) . '-' .
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   682
        "u{$session->user_id}l{$session->user_level}a{$session->auth_level}-" .
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   683
        dechex($page_timestamp);
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   684
        
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   685
if ( isset($_SERVER['HTTP_IF_NONE_MATCH']) )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   686
{
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   687
  if ( "\"$etag\"" == $_SERVER['HTTP_IF_NONE_MATCH'] )
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   688
  {
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   689
    header('HTTP/1.1 304 Not Modified');
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   690
    exit();
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   691
  }
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   692
}
867
fc4e242995d4 Moved gzip and aggressive_optimize_html calls to output.php
Dan
parents: 832
diff changeset
   693
          
1082
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   694
header("ETag: \"$etag\"");
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   695
*/
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   696
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   697
$db->close();  
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   698
gzip_output();
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   699
d1c41601ef39 index: removed that annoying 2-space indent
Dan
parents: 1081
diff changeset
   700
@ob_end_flush();
542
5841df0ab575 Added ETag support and increased caching settings to try and speed the system up. Result of a YSlow audit.
Dan
parents: 536
diff changeset
   701
  
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   702
?>