rev_deleted merge:
[lhc/web/wiklou.git] / includes / CoreParserFunctions.php
index 4a89c19..dbc18a2 100644 (file)
@@ -5,6 +5,52 @@
  * @addtogroup Parser
  */
 class CoreParserFunctions {
+       static function register( $parser ) {
+               global $wgAllowDisplayTitle, $wgAllowSlowParserFunctions;
+               
+               # Syntax for arguments (see self::setFunctionHook):
+               #  "name for lookup in localized magic words array",
+               #  function callback,
+               #  optional SFH_NO_HASH to omit the hash from calls (e.g. {{int:...}
+               #    instead of {{#int:...}})
+
+               $parser->setFunctionHook( 'int',              array( __CLASS__, 'intFunction'      ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'ns',               array( __CLASS__, 'ns'               ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'urlencode',        array( __CLASS__, 'urlencode'        ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'lcfirst',          array( __CLASS__, 'lcfirst'          ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'ucfirst',          array( __CLASS__, 'ucfirst'          ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'lc',               array( __CLASS__, 'lc'               ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'uc',               array( __CLASS__, 'uc'               ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'localurl',         array( __CLASS__, 'localurl'         ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'localurle',        array( __CLASS__, 'localurle'        ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'fullurl',          array( __CLASS__, 'fullurl'          ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'fullurle',         array( __CLASS__, 'fullurle'         ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'formatnum',        array( __CLASS__, 'formatnum'        ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'grammar',          array( __CLASS__, 'grammar'          ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'plural',           array( __CLASS__, 'plural'           ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'numberofpages',    array( __CLASS__, 'numberofpages'    ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'numberofusers',    array( __CLASS__, 'numberofusers'    ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'numberofarticles', array( __CLASS__, 'numberofarticles' ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'numberoffiles',    array( __CLASS__, 'numberoffiles'    ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'numberofadmins',   array( __CLASS__, 'numberofadmins'   ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'numberofedits',    array( __CLASS__, 'numberofedits'    ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'language',         array( __CLASS__, 'language'         ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'padleft',          array( __CLASS__, 'padleft'          ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'padright',         array( __CLASS__, 'padright'         ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'anchorencode',     array( __CLASS__, 'anchorencode'     ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'special',          array( __CLASS__, 'special'          ) );
+               $parser->setFunctionHook( 'defaultsort',      array( __CLASS__, 'defaultsort'      ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'filepath',         array( __CLASS__, 'filepath'         ), SFH_NO_HASH );
+               $parser->setFunctionHook( 'tag',              array( __CLASS__, 'tagObj'           ), SFH_OBJECT_ARGS );
+
+               if ( $wgAllowDisplayTitle ) {
+                       $parser->setFunctionHook( 'displaytitle', array( __CLASS__, 'displaytitle' ), SFH_NO_HASH );
+               }
+               if ( $wgAllowSlowParserFunctions ) {
+                       $parser->setFunctionHook( 'pagesinnamespace', array( __CLASS__, 'pagesinnamespace' ), SFH_NO_HASH );
+               }
+       }
+
        static function intFunction( $parser, $part1 = '' /*, ... */ ) {
                if ( strval( $part1 ) !== '' ) {
                        $args = array_slice( func_get_args(), 2 );
@@ -51,12 +97,20 @@ class CoreParserFunctions {
 
        static function lc( $parser, $s = '' ) {
                global $wgContLang;
-               return $wgContLang->lc( $s );
+               if ( is_callable( array( $parser, 'markerSkipCallback' ) ) ) {
+                       return $parser->markerSkipCallback( $s, array( $wgContLang, 'lc' ) );
+               } else {
+                       return $wgContLang->lc( $s );
+               }
        }
 
        static function uc( $parser, $s = '' ) {
                global $wgContLang;
-               return $wgContLang->uc( $s );
+               if ( is_callable( array( $parser, 'markerSkipCallback' ) ) ) {
+                       return $parser->markerSkipCallback( $s, array( $wgContLang, 'uc' ) );
+               } else {
+                       return $wgContLang->uc( $s );
+               }
        }
 
        static function localurl( $parser, $s = '', $arg = null ) { return self::urlFunction( 'getLocalURL', $s, $arg ); }
@@ -84,8 +138,12 @@ class CoreParserFunctions {
                }
        }
 
-       static function formatNum( $parser, $num = '' ) {
-               return $parser->getFunctionLang()->formatNum( $num );
+       static function formatNum( $parser, $num = '', $raw = null) {
+               if ( self::israw( $raw ) ) {
+                       return $parser->getFunctionLang()->parseFormattedNumber( $num );
+               } else {
+                       return $parser->getFunctionLang()->formatNum( $num );
+               }
        }
 
        static function grammar( $parser, $case = '', $word = '' ) {
@@ -126,31 +184,35 @@ class CoreParserFunctions {
                        return $mwRaw->match( $param );
                }
        }
-
-       static function statisticsFunction( $func, $raw = null ) {
-               if ( self::isRaw( $raw ) ) {
-                       return call_user_func( array( 'SiteStats', $func ) );
+       
+       static function formatRaw( $num, $raw ) {
+               if( self::isRaw( $raw ) ) {
+                       return $num;
                } else {
                        global $wgContLang;
-                       return $wgContLang->formatNum( call_user_func( array( 'SiteStats', $func ) ) );
+                       return $wgContLang->formatNum( $num );
                }
        }
-
-       static function numberofpages( $parser, $raw = null ) { return self::statisticsFunction( 'pages', $raw ); }
-       static function numberofusers( $parser, $raw = null ) { return self::statisticsFunction( 'users', $raw ); }
-       static function numberofarticles( $parser, $raw = null ) { return self::statisticsFunction( 'articles', $raw ); }
-       static function numberoffiles( $parser, $raw = null ) { return self::statisticsFunction( 'images', $raw ); }
-       static function numberofadmins( $parser, $raw = null ) { return self::statisticsFunction( 'admins', $raw ); }
-       static function numberofedits( $parser, $raw = null ) { return self::statisticsFunction( 'edits', $raw ); }
-
+       static function numberofpages( $parser, $raw = null ) {
+               return self::formatRaw( SiteStats::pages(), $raw );
+       }
+       static function numberofusers( $parser, $raw = null ) {
+               return self::formatRaw( SiteStats::users(), $raw );
+       }
+       static function numberofarticles( $parser, $raw = null ) {
+               return self::formatRaw( SiteStats::articles(), $raw );
+       }
+       static function numberoffiles( $parser, $raw = null ) {
+               return self::formatRaw( SiteStats::images(), $raw );
+       }
+       static function numberofadmins( $parser, $raw = null ) {
+               return self::formatRaw( SiteStats::admins(), $raw );
+       }
+       static function numberofedits( $parser, $raw = null ) {
+               return self::formatRaw( SiteStats::edits(), $raw );
+       }
        static function pagesinnamespace( $parser, $namespace = 0, $raw = null ) {
-               $count = SiteStats::pagesInNs( intval( $namespace ) );
-               if ( self::isRaw( $raw ) ) {
-                       global $wgContLang;
-                       return $wgContLang->formatNum( $count );
-               } else {
-                       return $count;
-               }
+               return self::formatRaw( SiteStats::pagesInNs( intval( $namespace ) ), $raw );
        }
 
        static function language( $parser, $arg = '' ) {
@@ -237,16 +299,12 @@ class CoreParserFunctions {
 
                $attributes = array();
                foreach ( $args as $arg ) {
-                       if ( !$xpath ) {
-                               $xpath = new DOMXPath( $arg->ownerDocument );
-                       }
-                       $names = $xpath->query( 'name', $arg );
-                       if ( !$names->item( 0 )->hasAttributes() ) {
-                               $name = $frame->expand( $names->item( 0 ), PPFrame::STRIP_COMMENTS );
-                               $values = $xpath->query( 'value', $arg );
-                               $value = trim( $frame->expand( $values->item( 0 ) ) );
-                               if ( preg_match( '/^(?:"|\')(.*)(?:"|\')$/s', $value, $m ) ) {
-                                       $value = $m[1];
+                       $bits = $arg->splitArg();
+                       if ( strval( $bits['index'] ) === '' ) {
+                               $name = $frame->expand( $bits['name'], PPFrame::STRIP_COMMENTS );
+                               $value = trim( $frame->expand( $bits['value'] ) );
+                               if ( preg_match( '/^(?:["\'](.+)["\']|""|\'\')$/s', $value, $m ) ) {
+                                       $value = isset( $m[1] ) ? $m[1] : '';
                                }
                                $attributes[$name] = $value;
                        }
@@ -255,7 +313,8 @@ class CoreParserFunctions {
                $params = array(
                        'name' => $tagName,
                        'inner' => $inner,
-                       'attributes' => $attributes
+                       'attributes' => $attributes,
+                       'close' => "</$tagName>",
                );
                return $parser->extensionSubstitution( $params, $frame );
        }