https://www.mediawiki.org/wiki/Special:Code/MediaWiki/101937

Revision: 101937
Author:   reedy
Date:     2011-11-04 01:00:06 +0000 (Fri, 04 Nov 2011)
Log Message:
-----------
Documentation

Fix mime-type on image

Modified Paths:
--------------
    trunk/extensions/Deployment/Deployment.php
    trunk/extensions/Translate/Groups.php
    trunk/extensions/Translate/scripts/cli.inc
    trunk/phase3/includes/specials/SpecialProtectedtitles.php

Property Changed:
----------------
    trunk/extensions/VisualEditor/modules/es/images/bullet.png

Modified: trunk/extensions/Deployment/Deployment.php
===================================================================
--- trunk/extensions/Deployment/Deployment.php  2011-11-04 00:59:11 UTC (rev 
101936)
+++ trunk/extensions/Deployment/Deployment.php  2011-11-04 01:00:06 UTC (rev 
101937)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Initialization file for the Deployment extension.
+ * Deployment extension.
  * Extension documentation: http://www.mediawiki.org/wiki/Extension:Deployment
  *
  * @file Deployment.php

Modified: trunk/extensions/Translate/Groups.php
===================================================================
--- trunk/extensions/Translate/Groups.php       2011-11-04 00:59:11 UTC (rev 
101936)
+++ trunk/extensions/Translate/Groups.php       2011-11-04 01:00:06 UTC (rev 
101937)
@@ -106,6 +106,7 @@
        /**
         * Returns message tags. If type is given, only messages keys with that
         * tag is returnted. Otherwise an array[tag => keys] is returnted.
+        * @param $type string
         * @return array
         */
        public function getTags( $type = null );

Modified: trunk/extensions/Translate/scripts/cli.inc
===================================================================
--- trunk/extensions/Translate/scripts/cli.inc  2011-11-04 00:59:11 UTC (rev 
101936)
+++ trunk/extensions/Translate/scripts/cli.inc  2011-11-04 01:00:06 UTC (rev 
101937)
@@ -69,6 +69,8 @@
 /**
  * Output a warning message to command line (if available).
  * @see STDOUT
+ * @param $message string
+ * @param $channel mixed|string
  */
 function STDERR( $message, $channel = null ) {
        STDOUT( $message, $channel, true );


Property changes on: trunk/extensions/VisualEditor/modules/es/images/bullet.png
___________________________________________________________________
Modified: svn:mime-type
   - application/octet-stream
   + image/png

Modified: trunk/phase3/includes/specials/SpecialProtectedtitles.php
===================================================================
--- trunk/phase3/includes/specials/SpecialProtectedtitles.php   2011-11-04 
00:59:11 UTC (rev 101936)
+++ trunk/phase3/includes/specials/SpecialProtectedtitles.php   2011-11-04 
01:00:06 UTC (rev 101937)
@@ -208,6 +208,9 @@
                return '';
        }
 
+       /**
+        * @return Title
+        */
        function getTitle() {
                return SpecialPage::getTitleFor( 'Protectedtitles' );
        }
@@ -216,6 +219,9 @@
                return $this->mForm->formatRow( $row );
        }
 
+       /**
+        * @return array
+        */
        function getQueryInfo() {
                $conds = $this->mConds;
                $conds[] = 'pt_expiry>' . $this->mDb->addQuotes( 
$this->mDb->timestamp() );


_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to