Whitespace/documentation
authorSam Reed <reedy@users.mediawiki.org>
Wed, 14 Sep 2011 15:07:20 +0000 (15:07 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Wed, 14 Sep 2011 15:07:20 +0000 (15:07 +0000)
includes/Message.php
includes/cache/MessageCache.php
includes/parser/Parser.php
tests/phpunit/includes/MessageTest.php

index 87349ff..803f091 100644 (file)
@@ -11,7 +11,7 @@
  *    $button = Xml::button( wfMessage( 'submit' )->text() );
  * </pre>
  * Messages can have parameters:
- *    wfMessage( 'welcome-to' )->params( $wgSitename )->text(); 
+ *    wfMessage( 'welcome-to' )->params( $wgSitename )->text();
  *        {{GRAMMAR}} and friends work correctly
  *    wfMessage( 'are-friends', $user, $friend );
  *    wfMessage( 'bad-message' )->rawParams( '<script>...</script>' )->escaped();
@@ -60,7 +60,7 @@ class Message {
         * means the current interface language, false content language.
         */
        protected $interface = true;
-       
+
        /**
         * In which language to get this message. Overrides the $interface
         * variable.
@@ -68,7 +68,7 @@ class Message {
         * @var Language
         */
        protected $language = null;
-       
+
        /**
         * The message key.
         */
@@ -100,6 +100,11 @@ class Message {
         */
        protected $title = null;
 
+       /**
+        * @var string
+        */
+       protected $message;
+
        /**
         * Constructor.
         * @param $key: message key, or array of message keys to try and use the first non-empty message for
@@ -181,7 +186,7 @@ class Message {
                }
                return $this;
        }
-       
+
        /**
         * Add parameters that are numeric and will be passed through
         * Language::formatNum before substitution
@@ -198,7 +203,7 @@ class Message {
                }
                return $this;
        }
-       
+
        /**
         * Request the message in any language that is supported.
         * As a side effect interface message status is unconditionally
@@ -216,7 +221,7 @@ class Message {
                } else {
                        $type = gettype( $lang );
                        throw new MWException( __METHOD__ . " must be "
-                               . "passed a String or Language object; $type given" 
+                               . "passed a String or Language object; $type given"
                        );
                }
                $this->interface = false;
@@ -268,10 +273,10 @@ class Message {
         */
        public function toString() {
                $string = $this->getMessageText();
-               
+
                # Replace parameters before text parsing
                $string = $this->replaceParameters( $string, 'before' );
-               
+
                # Maybe transform using the full parser
                if( $this->format === 'parse' ) {
                        $string = $this->parseText( $string );
@@ -287,10 +292,10 @@ class Message {
                        $string = $this->transformText( $string );
                        $string = htmlspecialchars( $string, ENT_QUOTES, 'UTF-8', false );
                }
-               
+
                # Raw parameter replacement
                $string = $this->replaceParameters( $string, 'after' );
-               
+
                return $string;
        }
 
@@ -303,7 +308,7 @@ class Message {
        public function __toString() {
                return $this->toString();
        }
-       
+
        /**
         * Fully parse the text from wikitext to HTML
         * @return String parsed HTML
index 7255ae7..d16f63e 100644 (file)
@@ -544,6 +544,8 @@ class MessageCache {
        /**
         * Represents a write lock on the messages key
         *
+        * @param $key string
+        *
         * @return Boolean: success
         */
        function lock( $key ) {
@@ -576,6 +578,8 @@ class MessageCache {
         *                  fallback).
         * @param $isFullKey Boolean: specifies whether $key is a two part key
         *                   "msg/lang".
+        *
+        * @return string|false
         */
        function get( $key, $useDB = true, $langcode = true, $isFullKey = false ) {
                global $wgLanguageCode, $wgContLang;
@@ -677,6 +681,8 @@ class MessageCache {
         *
         * @param $title String: Message cache key with initial uppercase letter.
         * @param $code String: code denoting the language to try.
+        *
+        * @return string|false
         */
        function getMsgFromNamespace( $title, $code ) {
                global $wgAdaptiveMessageCache;
@@ -795,10 +801,9 @@ class MessageCache {
 
        /**
         * @param $text string
-        * @param $string Title|string
         * @param $title Title
-        * @param $interface bool
         * @param $linestart bool
+        * @param $interface bool
         * @param $language
         * @return ParserOutput
         */
@@ -859,6 +864,10 @@ class MessageCache {
                $this->mLoadedLanguages = array();
        }
 
+       /**
+        * @param $key
+        * @return array
+        */
        public function figureMessage( $key ) {
                global $wgLanguageCode;
                $pieces = explode( '/', $key );
@@ -916,6 +925,9 @@ class MessageCache {
                wfProfileOut( __METHOD__ );
        }
 
+       /**
+        * @return array
+        */
        public function getMostUsedMessages() {
                wfProfileIn( __METHOD__ );
                $cachekey = wfMemcKey( 'message-profiling' );
index 1698fe7..744f2e6 100644 (file)
@@ -5292,7 +5292,7 @@ class Parser {
         * not found, $mode=get will return $newtext, and $mode=replace will return $text.
         *
         * Section 0 is always considered to exist, even if it only contains the empty
-        * string. If $text is the empty string and section 0 is replaced, $newText is 
+        * string. If $text is the empty string and section 0 is replaced, $newText is
         * returned.
         *
         * @param $mode String: one of "get" or "replace"
@@ -5427,7 +5427,7 @@ class Parser {
 
        /**
         * This function returns $oldtext after the content of the section
-        * specified by $section has been replaced with $text. If the target 
+        * specified by $section has been replaced with $text. If the target
         * section does not exist, $oldtext is returned unchanged.
         *
         * @param $oldtext String: former text of the article
index 45c02bb..295b6d7 100644 (file)
@@ -47,7 +47,7 @@ class MessageTest extends MediaWikiLangTestCase {
                $this->assertEquals( 'Main Page', wfMessage( 'mainpage' )->inContentLanguage()->plain(), 'ForceUIMsg disabled' );
                $wgForceUIMsgAsContentMsg['testInContentLanguage'] = 'mainpage';
                $this->assertEquals( 'Accueil', wfMessage( 'mainpage' )->inContentLanguage()->plain(), 'ForceUIMsg enabled' );
-               
+
                /* Restore globals */
                $wgLang = $oldLang;
                unset( $wgForceUIMsgAsContentMsg['testInContentLanguage'] );