OSDN Git Service

Correct '<br/>' => '<br />'
authorhenoheno <henoheno>
Sat, 2 Apr 2005 06:36:07 +0000 (15:36 +0900)
committerhenoheno <henoheno>
Sat, 2 Apr 2005 06:36:07 +0000 (15:36 +0900)
plugin/navi.inc.php
plugin/related.inc.php
plugin/search.inc.php
plugin/stationary.inc.php
plugin/vote.inc.php
pukiwiki.ini.php
skin/tdiary.skin.php

index 1e27fae..5aeefcb 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 // PukiWiki - Yet another WikiWikiWeb clone.
-// $Id: navi.inc.php,v 1.21 2005/04/02 02:42:39 henoheno Exp $
+// $Id: navi.inc.php,v 1.22 2005/04/02 06:33:39 henoheno Exp $
 //
 // Navi plugin: Show DocBook-like navigation bar and contents
 
@@ -59,13 +59,13 @@ function plugin_navi_convert()
                $is_home = ($home == $current);
                if (! is_page($home)) {
                        return '#navi(contents-page-name): No such page: ' .
-                               htmlspecialchars($home) . '<br/>';
+                               htmlspecialchars($home) . '<br />';
                } else if (! $is_home &&
                    ! preg_match('/^' . preg_quote($home, '/') . '/', $current)) {
                        return '#navi(' . htmlspecialchars($home) .
                                '): Not a child page like: ' .
                                htmlspecialchars($home . '/' . basename($current)) .
-                               '<br/>';
+                               '<br />';
                }
                $reverse = (strtolower($reverse) == 'reverse');
        } else {
@@ -145,7 +145,7 @@ function plugin_navi_convert()
                // Show contents
                $count = count($pages);
                if ($count == 0) {
-                       return '#navi(contents-page-name): You already view the result<br/>';
+                       return '#navi(contents-page-name): You already view the result<br />';
                } else if ($count == 1) {
                        // Sentinel only: Show usage and warning
                        $home = htmlspecialchars($home);
index 19d2292..f1dfeee 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 // PukiWiki - Yet another WikiWikiWeb clone
-// $Id: related.inc.php,v 1.4 2005/02/12 04:05:34 henoheno Exp $
+// $Id: related.inc.php,v 1.5 2005/04/02 06:33:39 henoheno Exp $
 //
 // Related plugin: Show Backlinks for the page
 
@@ -36,7 +36,7 @@ function plugin_related_action()
        $s_word = htmlspecialchars($_page);
        $msg = 'Backlinks for: ' . $s_word;
        $retval  = '<a href="' . $script . '?' . $r_word . '">' .
-               'Return to ' . $s_word .'</a><br/>'. "\n";
+               'Return to ' . $s_word .'</a><br />'. "\n";
 
        if (empty($data)) {
                $retval .= '<ul><li>No related pages found.</li></ul>' . "\n";  
index 3ad563f..df63c95 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 // PukiWiki - Yet another WikiWikiWeb clone.
-// $Id: search.inc.php,v 1.7 2005/02/27 07:14:30 henoheno Exp $
+// $Id: search.inc.php,v 1.8 2005/04/02 06:33:39 henoheno Exp $
 //
 // Search plugin
 
@@ -16,9 +16,9 @@ function plugin_search_convert()
        static $done;
 
        if (func_get_args()) {
-               return '#search(): No argument<br/>' . "\n";
+               return '#search(): No argument<br />' . "\n";
        } else if (isset($done)) {
-               return '#search(): You already view a search box<br/>' . "\n";
+               return '#search(): You already view a search box<br />' . "\n";
        } else {
                $done = TRUE;
                return plugin_search_search_form();
index 7c7bc97..1fe431c 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-// $Id: stationary.inc.php,v 1.3 2005/04/02 03:36:37 henoheno Exp $
+// $Id: stationary.inc.php,v 1.4 2005/04/02 06:33:39 henoheno Exp $
 //
 // Stationary plugin
 // License: The same as PukiWiki
@@ -40,7 +40,7 @@ function plugin_stationary_convert()
                $result = '(' . join(',', $args) . ')';
        }
 
-       return '#stationary' . $result . '<br/>';
+       return '#stationary' . $result . '<br />';
 }
 
 // In-line type plugin: &stationary; or &stationary(foo); , or &stationary(foo){bar};
index 89ebfd6..f910522 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 // PukiWiki - Yet another WikiWikiWeb clone.
-// $Id: vote.inc.php,v 1.22 2005/01/23 09:43:06 henoheno Exp $
+// $Id: vote.inc.php,v 1.23 2005/04/02 06:33:39 henoheno Exp $
 //
 // Vote box plugin
 
@@ -84,7 +84,7 @@ function plugin_vote_convert()
        if (! isset($number[$page])) $number[$page] = 0; // Init
        $vote_no = $number[$page]++;
 
-       if (! func_num_args()) return '#vote(): No arguments<br/>' . "\n";
+       if (! func_num_args()) return '#vote(): No arguments<br />' . "\n";
 
        if (PKWK_READONLY) {
                $_script = '';
index 6d4cee0..e2952a2 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 // PukiWiki - Yet another WikiWikiWeb clone
-// $Id: pukiwiki.ini.php,v 1.116 2005/03/21 08:29:18 henoheno Exp $
+// $Id: pukiwiki.ini.php,v 1.117 2005/04/02 06:34:50 henoheno Exp $
 //
 // PukiWiki main setting file
 
@@ -375,7 +375,7 @@ $fixed_heading_anchor = 1;
 $preformat_ltrim = 1;
 
 /////////////////////////////////////////////////
-// Convert linebreaks into <br/>
+// Convert linebreaks into <br />
 $line_break = 0;
 
 /////////////////////////////////////////////////
index beb1249..217876d 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 // PukiWiki - Yet another WikiWikiWeb clone.
-// $Id: tdiary.skin.php,v 1.19 2005/03/21 05:25:23 henoheno Exp $
+// $Id: tdiary.skin.php,v 1.20 2005/04/02 06:36:07 henoheno Exp $
 //
 // tDiary-wrapper skin
 
@@ -40,7 +40,7 @@ if ($theme == '' || $theme == 'TDIARY_THEME') {
        $theme_css = SKIN_DIR . 'theme/' . $theme . '/' . $theme . '.css';
        if (! file_exists($theme_css)) {
                echo 'tDiary theme wrapper: ';
-               echo 'Theme not found: ' . htmlspecialchars($theme_css) . '<br/>';
+               echo 'Theme not found: ' . htmlspecialchars($theme_css) . '<br />';
                echo 'You can get tdiary-theme from: ';
                echo 'http://sourceforge.net/projects/tdiary/';
                exit;
@@ -535,7 +535,7 @@ default:
 <?php if ($notes != '') { ?>
 <div class="comment"><!-- Design for tDiary "Comments" -->
        <div class="caption">&nbsp;</div>
-       <div class="commentbody"><br/>
+       <div class="commentbody"><br />
                <?php
                $notes = preg_replace('#<span class="small">(.*?)</span>#', '<p>$1</p>', $notes);
                echo preg_replace('#<a (id="notefoot_[^>]*)>(.*?)</a>#',
@@ -688,7 +688,7 @@ function _toolbar($key, $x = 20, $y = 20){
  <?php _toolbar('recent') ?>
  &nbsp; <?php _toolbar('help') ?>
  &nbsp; <?php _toolbar('rss10', 36, 14) ?>
- <br/>
+ <br />
 <?php } // PKWK_SKIN_SHOW_TOOLBAR ?>
 
 <!-- Copyright etc -->