Update break notation to self enclosed and properly spaced
authorSiebrand Mazeland <siebrand@users.mediawiki.org>
Sat, 14 Nov 2009 20:59:15 +0000 (20:59 +0000)
committerSiebrand Mazeland <siebrand@users.mediawiki.org>
Sat, 14 Nov 2009 20:59:15 +0000 (20:59 +0000)
13 files changed:
config/Installer.php
includes/EditPage.php
includes/HTMLForm.php
includes/ImagePage.php
includes/Pager.php
includes/api/ApiFormatBase.php
includes/diff/DifferenceInterface.php
includes/specials/SpecialListusers.php
includes/specials/SpecialProtectedpages.php
includes/specials/SpecialUndelete.php
languages/messages/MessagesAf.php
languages/messages/MessagesLmo.php
languages/messages/MessagesMzn.php

index 9e7e188..7c6828a 100644 (file)
@@ -1514,7 +1514,7 @@ if( count( $errs ) ) {
                <br /><br />
                MediaWiki can also detect and support eAccelerator, Turck MMCache, APC, and XCache, but
                these should not be used if the wiki will be running on multiple application servers.
-               <br/><br/>
+               <br /><br />
                DBA (Berkeley-style DB) is generally slower than using no cache at all, and is only 
                recommended for testing.
        </p>
@@ -1660,9 +1660,9 @@ if( count( $errs ) ) {
        </div>
        <p class="config-desc">
                This option is ignored on upgrade, the same character set will be kept. 
-               <br/><br/>
+               <br /><br />
                <b>WARNING:</b> If you use <b>backwards-compatible UTF-8</b> on MySQL 4.1+, and subsequently back up the database with <tt>mysqldump</tt>, it may destroy all non-ASCII characters, irreversibly corrupting your backups!.
-               <br/><br/>
+               <br /><br />
                In <b>binary mode</b>, MediaWiki stores UTF-8 text to the database in binary fields. This is more efficient than MySQL's UTF-8 mode, and allows you to use the full range of Unicode characters. In <b>UTF-8 mode</b>, MySQL will know what character set your data is in, and can present and convert it appropriately, but it won't let you store characters above the <a target="_blank" href="http://en.wikipedia.org/wiki/Mapping_of_Unicode_character_planes">Basic Multilingual Plane</a>.
        </p>
        </fieldset>
index 091635a..1a742bb 100644 (file)
@@ -1456,7 +1456,7 @@ class EditPage {
 
                        // No idea where this is closed.
                        $editsummary = Xml::openElement( 'div', array( 'class' => 'editOptions' ) )
-                                                       . $editsummary . '<br/>';
+                                                       . $editsummary . '<br />';
 
                        $summarypreview = '';
                        if ( $summarytext && ( $this->preview || $this->diff ) ) {
index dd22ea7..dc2d0a5 100644 (file)
@@ -1175,7 +1175,7 @@ class HTMLSelectOrOtherField extends HTMLTextField {
                                                        'text',
                                                        $tbAttribs );
 
-               return "$select<br/>\n$textbox";
+               return "$select<br />\n$textbox";
        }
 
        function loadDataFromRequest( $request ) {
@@ -1323,7 +1323,7 @@ class HTMLRadioField extends HTMLFormField {
                                $html .= '&nbsp;' .
                                                Html::rawElement( 'label', array( 'for' => $id ), $label );
 
-                               $html .= "<br/>\n";
+                               $html .= "<br />\n";
                        }
                }
 
index 0401e1d..d85ffdb 100644 (file)
@@ -874,7 +874,7 @@ class ImageHistoryList {
                        $canHide = $wgUser->isAllowed( 'deleterevision' );
                        if( $canHide || ($wgUser->isAllowed('deletedhistory') && $file->getVisibility()) ) {
                                if( $wgUser->isAllowed('delete') ) {
-                                       $row .= '<br/>';
+                                       $row .= '<br />';
                                }
                                // If file is top revision or locked from this user, don't link
                                if( $iscur || !$file->userCan(File::DELETED_RESTRICTED) ) {
index 825a046..d4aa95d 100644 (file)
@@ -909,8 +909,8 @@ abstract class TablePager extends IndexPager {
                $disabledTexts = array();
                foreach ( $labels as $type => $label ) {
                        $msgLabel = wfMsgHtml( $label );
-                       $linkTexts[$type] = "<img src=\"$path/{$images[$type]}\" alt=\"$msgLabel\"/><br/>$msgLabel";
-                       $disabledTexts[$type] = "<img src=\"$path/{$disabledImages[$type]}\" alt=\"$msgLabel\"/><br/>$msgLabel";
+                       $linkTexts[$type] = "<img src=\"$path/{$images[$type]}\" alt=\"$msgLabel\"/><br />$msgLabel";
+                       $disabledTexts[$type] = "<img src=\"$path/{$disabledImages[$type]}\" alt=\"$msgLabel\"/><br />$msgLabel";
                }
                $links = $this->getPagingLinks( $linkTexts, $disabledTexts );
 
index 0294fce..824e888 100644 (file)
@@ -147,10 +147,10 @@ abstract class ApiFormatBase extends ApiBase {
 
                        if( !$isError ) {
 ?>
-<br/>
+<br />
 <small>
-You are looking at the HTML representation of the <?php echo( $this->mFormat ); ?> format.<br/>
-HTML is good for debugging, but probably is not suitable for your application.<br/>
+You are looking at the HTML representation of the <?php echo( $this->mFormat ); ?> format.<br />
+HTML is good for debugging, but probably is not suitable for your application.<br />
 See <a href='http://www.mediawiki.org/wiki/API'>complete documentation</a>, or
 <a href='<?php echo( $script ); ?>'>API help</a> for more information.
 </small>
index eed9d3e..a71a689 100644 (file)
@@ -506,7 +506,7 @@ CONTROL;
                if( !$next ) {
                        $nextlink = '';
                } else {
-                       $nextlink = '<br/>' . $sk->link(
+                       $nextlink = '<br />' . $sk->link(
                                $this->mTitle,
                                wfMsgHtml( 'nextdiff' ),
                                array(
@@ -523,7 +523,7 @@ CONTROL;
                        );
                }
                $header = "<div class=\"firstrevisionheader\" style=\"text-align: center\">" .
-                       $sk->revUserTools( $this->mNewRev ) . "<br/>" . $sk->revComment( $this->mNewRev ) . $nextlink . "</div>\n";
+                       $sk->revUserTools( $this->mNewRev ) . "<br />" . $sk->revComment( $this->mNewRev ) . $nextlink . "</div>\n";
 
                $wgOut->addHTML( $header );
 
index 8d9213a..bdb5998 100644 (file)
@@ -193,11 +193,11 @@ class UsersPager extends AlphabeticPager {
                        Xml::option( wfMsg( 'group-all' ), '' );
                foreach( $this->getAllGroups() as $group => $groupText )
                        $out .= Xml::option( $groupText, $group, $group == $this->requestedGroup );
-               $out .= Xml::closeElement( 'select' ) . '<br/>';
+               $out .= Xml::closeElement( 'select' ) . '<br />';
                $out .= Xml::checkLabel( wfMsg('listusers-editsonly'), 'editsOnly', 'editsOnly', $this->editsOnly );
                $out .= '&nbsp;';
                $out .= Xml::checkLabel( wfMsg('listusers-creationsort'), 'creationSort', 'creationSort', $this->creationSort );
-               $out .= '<br/>';
+               $out .= '<br />';
 
                wfRunHooks( 'SpecialListusersHeaderForm', array( $this, &$out ) );
 
index f7f864d..905f6e1 100644 (file)
@@ -142,10 +142,10 @@ class ProtectedPagesForm {
                        $this->getNamespaceMenu( $namespace ) . "&nbsp;\n" .
                        $this->getTypeMenu( $type ) . "&nbsp;\n" .
                        $this->getLevelMenu( $level ) . "&nbsp;\n" .
-                       "<br/><span style='white-space: nowrap'>" .
+                       "<br /><span style='white-space: nowrap'>" .
                        $this->getExpiryCheck( $indefOnly ) . "&nbsp;\n" .
                        $this->getCascadeCheck( $cascadeOnly ) . "&nbsp;\n" .
-                       "</span><br/><span style='white-space: nowrap'>" .
+                       "</span><br /><span style='white-space: nowrap'>" .
                        $this->getSizeLimit( $sizetype, $size ) . "&nbsp;\n" .
                        "</span>" .
                        "&nbsp;" . Xml::submitButton( wfMsg( 'allpagessubmit' ) ) . "\n" .
index 9a16f09..86d01c9 100644 (file)
@@ -745,7 +745,7 @@ class UndeleteForm {
                                return;
                        } else {
                                $wgOut->wrapWikiMsg( "<div class='mw-warning plainlinks'>\n$1</div>\n", 'rev-deleted-text-view' );
-                               $wgOut->addHTML( '<br/>' );
+                               $wgOut->addHTML( '<br />' );
                                // and we are allowed to see...
                        }
                }
@@ -932,10 +932,10 @@ class UndeleteForm {
                                ) .
                        '</strong></div>' .
                        '<div id="mw-diff-'.$prefix.'title2">' .
-                               $sk->revUserTools( $rev ) . '<br/>' .
+                               $sk->revUserTools( $rev ) . '<br />' .
                        '</div>' .
                        '<div id="mw-diff-'.$prefix.'title3">' .
-                               $sk->revComment( $rev ) . $del . '<br/>' .
+                               $sk->revComment( $rev ) . $del . '<br />' .
                        '</div>';
        }
 
index c984627..2de7c59 100644 (file)
@@ -1429,7 +1429,7 @@ die lêer is $2.',
 'fileexists'                 => "'n Lêer met die naam bestaan reeds, kyk na '''<tt>[[:$1]]</tt>''' as u nie seker is dat u dit wil wysig nie.
 [[$1|thumb]]",
 'file-exists-duplicate'      => "Die lêer is 'n duplikaat van die volgende {{PLURAL:$1|lêer|lêers}}:",
-'file-deleted-duplicate'     => "'n Lêer identies aan dié een ([[$1]]) was al voorheen geskrap. <br>
+'file-deleted-duplicate'     => "'n Lêer identies aan dié een ([[$1]]) was al voorheen geskrap. <br />
 Dit word aanbeveel dat u die lêer se skrapgeskiedenis besigtig voor u poog om dit weer op te laai.",
 'successfulupload'           => 'Laai suksesvol',
 'uploadwarning'              => 'Laaiwaarskuwing',
index 2a42da5..eee9ed3 100644 (file)
@@ -457,8 +457,8 @@ Per piasè, abilita i cookies e pröa anmò a andà dent cunt el tò nom e la pa
 'noname'                  => "Vüü avii mía specificaa un nomm d'üsüari valévul.",
 'loginsuccesstitle'       => "La cunessiun l'è scumenzada cun sücess.",
 'loginsuccess'            => 'Al é connectaa a {{SITENAME}} compagn "$1".',
-'nosuchuser'              => "A gh'è nissün druvat cun 'l nom ''$1''. <br>
-I suranomm i henn sensibil a i leter majùscul.<br>
+'nosuchuser'              => "A gh'è nissün druvat cun 'l nom ''$1''. <br />
+I suranomm i henn sensibil a i leter majùscul.<br />
 Cuntrola 'l nom che t'hee metüü denter o [[Special:UserLogin/signup|crea un cünt növ]].",
 'nosuchusershort'         => "Ghe n'è mia d'ütent cun el nom de \"<nowiki>\$1</nowiki>\". Ch'el cuntrola se l'ha scrivüü giüst.",
 'nouserspecified'         => "Te gh'heet da specificà un nom del druvatt.",
index e0b010b..39b1562 100644 (file)
@@ -299,7 +299,7 @@ $2، $1',
  شه‌مه ده‌گه‌ره‌سه‌ن‌ئون جانأکه‌فته که وه‌نه، جادأکه‌فته‌ن تگمه ره بأزه‌نین!",
 'editing'                          => 'دچیه‌ن => $1',
 'editingsection'                   => 'دچیه‌ن $1 (تیکه)',
-'copyrightwarning'                 => 'خـاهـه‌ش بـونـه شـه یـاد ده‌لـه دأکـه‌نـیـن کـه هـأمـه کـایـه‌رئونی کـه {{SITENAME}} ده‌لـه بـونـه، $2 جـیـر ره‌هـا بـونـه. (ویـشـتـه‌ر وه‌سـه $1 ره بـأویـنـیـن)<br>
+'copyrightwarning'                 => 'خـاهـه‌ش بـونـه شـه یـاد ده‌لـه دأکـه‌نـیـن کـه هـأمـه کـایـه‌رئونی کـه {{SITENAME}} ده‌لـه بـونـه، $2 جـیـر ره‌هـا بـونـه. (ویـشـتـه‌ر وه‌سـه $1 ره بـأویـنـیـن)<br />
 أگـه نـه‌خـانـه‌نـی شـه‌مـه بـأنـویـشـتـه‌ئون ایـجـه دسـت بـأخـوره ئو أتـا جـا دیـگـه پـخـش بـأوه، بـه‌تـه‌ر هـأسـه کـه وه‌شـون ره ایـجـه نـیـه‌لـیـن.',
 'templatesused'                    => 'شـابـلـون‌ئـونی که ای ولـگ ده‌له کـار بـورده‌نـه:',
 'templatesusedpreview'             => 'شـابـلـون‌ئونی کی ای پـیـش‌نـه‌مـایـه‌ش ده‌لـه کـار بـورده‌نـه:',