fix bug #28071. Many video previews are relatively large, esp. since MediaWiki only...
[lhc/web/wiklou.git] / includes / ImageGallery.php
index 62f9eed..5471b27 100644 (file)
@@ -14,7 +14,6 @@ class ImageGallery
        var $mImages, $mShowBytes, $mShowFilename;
        var $mCaption = false;
        var $mSkin = false;
-       var $mRevisionId = 0;
 
        /**
         * Hide blacklisted images?
@@ -23,6 +22,7 @@ class ImageGallery
 
        /**
         * Registered parser object for output callbacks
+        * @var Parser
         */
        var $mParser;
 
@@ -34,6 +34,13 @@ class ImageGallery
 
        private $mAttribs = array();
 
+       /**
+        * Fixed margins
+        */
+       const THUMB_PADDING = 30;
+       const GB_PADDING = 5;
+       const GB_BORDERS = 6;
+
        /**
         * Create a new image gallery object.
         */
@@ -156,11 +163,11 @@ class ImageGallery
        }
 
        /**
-       * Add an image at the beginning of the gallery.
-       *
-       * @param $title Title object of the image that is added to the gallery
-       * @param $html  String:  Additional HTML text to be shown. The name and size of the image are always shown.
-       */
+       * Add an image at the beginning of the gallery.
+       *
+       * @param $title Title object of the image that is added to the gallery
+       * @param $html  String:  Additional HTML text to be shown. The name and size of the image are always shown.
+       */
        function insert( $title, $html='' ) {
                if ( $title instanceof File ) {
                        // Old calling convention
@@ -226,42 +233,49 @@ class ImageGallery
                $sk = $this->getSkin();
 
                if ( $this->mPerRow > 0 ) {
-                       $maxwidth = $this->mPerRow * ( $this->mWidths + 50 );
-                       $this->mAttribs['style'] = "max-width: {$maxwidth}px;_width: {$maxwidth}px;";
+                       $maxwidth = $this->mPerRow * ( $this->mWidths + self::THUMB_PADDING + self::GB_PADDING + self::GB_BORDERS );
+                       $oldStyle = isset( $this->mAttribs['style'] ) ? $this->mAttribs['style'] : ""; 
+                       $this->mAttribs['style'] = "max-width: {$maxwidth}px;_width: {$maxwidth}px;" . $oldStyle;
                }
 
                $attribs = Sanitizer::mergeAttributes(
-                       array(
-                               'class' => 'gallery'),
-                       $this->mAttribs );
+                       array( 'class' => 'gallery' ), $this->mAttribs );
+
                $s = Xml::openElement( 'ul', $attribs );
                if ( $this->mCaption ) {
                        $s .= "\n\t<li class='gallerycaption'>{$this->mCaption}</li>";
                }
 
                $params = array( 'width' => $this->mWidths, 'height' => $this->mHeights );
-               $i = 0;
+               # Output each image...
                foreach ( $this->mImages as $pair ) {
                        $nt = $pair[0];
                        $text = $pair[1]; # "text" means "caption" here
 
-                       # Give extensions a chance to select the file revision for us
-                       $time = $descQuery = false;
-                       wfRunHooks( 'BeforeGalleryFindFile', array( &$this, &$nt, &$time, &$descQuery ) );
-
+                       $descQuery = false;
                        if ( $nt->getNamespace() == NS_FILE ) {
-                               $img = wfFindFile( $nt, array( 'time' => $time ) );
+                               # Get the file...
+                               if ( $this->mParser instanceof Parser ) {
+                                       # Give extensions a chance to select the file revision for us
+                                       $time = $sha1 = false;
+                                       wfRunHooks( 'BeforeParserFetchFileAndTitle',
+                                               array( $this->mParser, &$nt, &$time, &$sha1, &$descQuery ) );
+                                       # Fetch and register the file (file title may be different via hooks)
+                                       list( $img, $nt ) = $this->mParser->fetchFileAndTitle( $nt, $time, $sha1 );
+                               } else {
+                                       $img = wfFindFile( $nt );
+                               }
                        } else {
                                $img = false;
                        }
 
                        if( !$img ) {
                                # We're dealing with a non-image, spit out the name and be done with it.
-                               $thumbhtml = "\n\t\t\t".'<div style="height: '.(30 + $this->mHeights).'px;">'
+                               $thumbhtml = "\n\t\t\t".'<div style="height: '.(self::THUMB_PADDING + $this->mHeights).'px;">'
                                        . htmlspecialchars( $nt->getText() ) . '</div>';
                        } elseif( $this->mHideBadImages && wfIsBadImage( $nt->getDBkey(), $this->getContextTitle() ) ) {
                                # The image is blacklisted, just show it as a text link.
-                               $thumbhtml = "\n\t\t\t".'<div style="height: '.(30 + $this->mHeights).'px;">' .
+                               $thumbhtml = "\n\t\t\t".'<div style="height: '.(self::THUMB_PADDING + $this->mHeights).'px;">' .
                                        $sk->link(
                                                $nt,
                                                htmlspecialchars( $nt->getText() ),
@@ -272,10 +286,14 @@ class ImageGallery
                                        '</div>';
                        } elseif( !( $thumb = $img->transform( $params ) ) ) {
                                # Error generating thumbnail.
-                               $thumbhtml = "\n\t\t\t".'<div style="height: '.(30 + $this->mHeights).'px;">'
+                               $thumbhtml = "\n\t\t\t".'<div style="height: '.(self::THUMB_PADDING + $this->mHeights).'px;">'
                                        . htmlspecialchars( $img->getLastError() ) . '</div>';
                        } else {
-                               $vpad = floor(( 30 + $this->mHeights - $thumb->height ) /2);
+                               //We get layout problems with the margin, if the image is smaller 
+                               //than the line-height, so we less margin in these cases.
+                               $minThumbHeight =  $thumb->height > 17 ? $thumb->height : 17;
+                               $vpad = floor(( self::THUMB_PADDING + $this->mHeights - $minThumbHeight ) /2);
+                               
 
                                $imageParameters = array(
                                        'desc-link' => true,
@@ -286,10 +304,9 @@ class ImageGallery
                                        $imageParameters['alt'] = $nt->getText();
                                }
 
-                               # Set both fixed width and height. Otherwise we might have problems
-                               # with the vertical centering of images where height<line-size
+                               # Set both fixed width and min-height.
                                $thumbhtml = "\n\t\t\t".
-                                       '<div class="thumb" style="width: ' .($this->mWidths+30).'px; height: ' .($this->mHeights+30).'px;">'
+                                       '<div class="thumb" style="width: ' .($this->mWidths + self::THUMB_PADDING).'px;">'
                                        # Auto-margin centering for block-level elements. Needed now that we have video
                                        # handlers since they may emit block-level elements as opposed to simple <img> tags.
                                        # ref http://css-discuss.incutio.com/?page=CenteringBlockElement
@@ -335,14 +352,13 @@ class ImageGallery
                        # Weird double wrapping in div needed due to FF2 bug
                        # Can be safely removed if FF2 falls completely out of existance
                        $s .=
-                               "\n\t\t" . '<li class="gallerybox" style="width: ' . ( $this->mWidths + 35 ) . 'px">'
-                                       . '<div style="width: ' . ( $this->mWidths + 35 ) . 'px">'
+                               "\n\t\t" . '<li class="gallerybox" style="width: ' . ( $this->mWidths + self::THUMB_PADDING + self::GB_PADDING ) . 'px">'
+                                       . '<div style="width: ' . ( $this->mWidths + self::THUMB_PADDING + self::GB_PADDING ) . 'px">'
                                        . $thumbhtml
                                        . "\n\t\t\t" . '<div class="gallerytext">' . "\n"
                                                . $textlink . $text . $nb
                                        . "\n\t\t\t</div>"
                                . "\n\t\t</div></li>";
-                       ++$i;
                }
                $s .= "\n</ul>";