OSDN Git Service

Cleanup the order of codes
authorhenoheno <henoheno>
Tue, 5 Jul 2005 14:13:53 +0000 (23:13 +0900)
committerhenoheno <henoheno>
Tue, 5 Jul 2005 14:13:53 +0000 (23:13 +0900)
skin/keitai.skin.php

index 608f173..81a99a7 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 // PukiWiki - Yet another WikiWikiWeb clone.
-// $Id: keitai.skin.php,v 1.11 2005/07/05 13:40:54 henoheno Exp $
+// $Id: keitai.skin.php,v 1.12 2005/07/05 14:13:53 henoheno Exp $
 // Copyright (C) 2003-2005 PukiWiki Developers Team
 // License: GPL v2 or (at your option) any later version
 //
 // Prohibit direct access
 if (! defined('UI_LANG')) die('UI_LANG is not set');
 
+$pageno = (isset($vars['p']) && is_numeric($vars['p'])) ? $vars['p'] : 0;
+$edit = (isset($vars['cmd'])    && $vars['cmd']    == 'edit') ||
+       (isset($vars['plugin']) && $vars['plugin'] == 'edit');
+
 global $max_size, $accesskey, $menubar;
+$max_size = --$max_size * 1024; // Make 1KByte spare (for $navi, etc)
 $link = $_LINK;
 $rw = ! PKWK_READONLY;
 
-// Output HTTP headers
-pkwk_headers_sent();
-if(TRUE) {
-       // Force Shift JIS encode for Japanese embedded browsers and devices
-       header('Content-Type: text/html; charset=Shift_JIS');
-       $title = mb_convert_encoding($title, 'SJIS', SOURCE_ENCODING);
-       $body  = mb_convert_encoding($body,  'SJIS', SOURCE_ENCODING);
-} else {
-       header('Content-Type: text/html; charset=' . CONTENT_CHARSET);
-}
+// Check content volume, Page numbers, divided by this skin
+$pagecount = ceil(strlen($body) / $max_size);
 
-// Make 1KByte spare (for header, etc)
-$max_size = --$max_size * 1024;
+// Too large contents to edit
+if ($edit && $pagecount > 1)
+       die('Unable to edit: Too large contents for your device');
 
-// Replace IMG tags (= images) with character strings
+// Shrink IMG tags (= images) with character strings
 // With ALT option
 $body = preg_replace('#(<div[^>]+>)?(<a[^>]+>)?<img[^>]*alt="([^"]+)"[^>]*>(?(2)</a>)(?(1)</div>)#i', '[$3]', $body);
 // Without ALT option
 $body = preg_replace('#(<div[^>]+>)?(<a[^>]+>)?<img[^>]+>(?(2)</a>)(?(1)</div>)#i', '[img]', $body);
 
-// Check content volume, Page numbers, divided by this skin
-$pageno = (isset($vars['p']) && is_numeric($vars['p'])) ? $vars['p'] : 0;
-$pagecount = ceil(strlen($body) / $max_size);
-$lastpage = $pagecount - 1;
-
-// Too large contents to edit
-if (((isset($vars['cmd'])    && $vars['cmd']    == 'edit') ||
-     (isset($vars['plugin']) && $vars['plugin'] == 'edit')) &&
-   $pagecount > 1)
-       die('Unable to edit: Too large contents for your device');
+// Get one page
+$body = substr($body, $pageno * $max_size, $max_size);
 
+// ----
 // Top navigation (text) bar
+
 $navi = array();
 $navi[] = '<a href="' . $link['top']  . '" ' . $accesskey . '="0">0.Top</a>';
 if ($rw) {
@@ -71,14 +63,25 @@ if ($pagecount > 1) {
                        '&amp;p=' . $prev . '" ' . $accesskey . '="7">7.Prev</a>';
        }
        $navi[] = $next . '/' . $pagecount . ' ';
-       if ($pageno < $lastpage) {
+       if ($pageno < $pagecount - 1) {
                $navi[] = '<a href="' . $script . '?cmd=read&amp;page=' . $r_page .
                        '&amp;p=' . $next . '" ' . $accesskey . '="8">8.Next</a>';
        }
 }
 
 $navi = join(' | ', $navi);
-$body = substr($body, $pageno * $max_size, $max_size);
+
+// ----
+// Output HTTP headers
+pkwk_headers_sent();
+if(TRUE) {
+       // Force Shift JIS encode for Japanese embedded browsers and devices
+       header('Content-Type: text/html; charset=Shift_JIS');
+       $title = mb_convert_encoding($title, 'SJIS', SOURCE_ENCODING);
+       $body  = mb_convert_encoding($body,  'SJIS', SOURCE_ENCODING);
+} else {
+       header('Content-Type: text/html; charset=' . CONTENT_CHARSET);
+}
 
 // Output
 ?><html><head><title><?php