MW1.15 Not Working - Images on top of each other
I've tested this with 1.15. It works. I'd check to see if your javascript is being loaded properly. Do you have web developer? See if all of the javascript is loading.
I have the same result in MW-1.17wmf1. All the pictures are on top of each other. However, when I press button Show preview I got normal gallery layout like in wiki/Special:NewFiles (Gallery of New files). When I save page I have the problem. How to check that all JS are loading?
Just to add. First try was in Firefox browser. Tried in IE-7, the problem remains even in preview mode.
1.17 is a different beast. It is using Resource Loader, which this extension isn't written to support yet.
I just upgraded a mediawiki to 1.17.0 and noticed that SmoothGallery isn't working any more. When is SmoothGallery expected to be updated to work with Resource Loader?
Thank you, Christoph
Still no answer so let's change the question. :-) Will there be an update for SmoothGallery working with Mediawiki 1.17.0 in the near future?
Regards Norbert
For me, the following worked (more ore less):
Add a line like
$outputPage->addHeadItem('mootools', '<script src="' . $extensionpath . '/scripts/mootools.uncompressed.js" type="text/javascript"></script>' );
to the function setGalleryHeaders() in SmoothGalleryClass.php. Then, the gallery did appear, at least. Anyways, the parameters were not passed to the gallery... Seems the SmoothGalleryParser class is not loaded/initialized correctly.
I would appreciate an official update of this marvelous extension very much!
The support desk answered something similar to what Ryan said so far (cf. OutputPage::addScript(), where I first thought it was a problem of the OutputPage::addScript() function).
Desperately voting for an update, Ryan! ;)
Fix, works on MW 1.18 and SG 1.1h,
in SmoothGalleryClass.php find (line 283):
$outputPage->addScript( '<script src="' . $extensionpath . '/scripts/mootools.uncompressed.js" type="text/javascript"></script>' ); $outputPage->addScript( '<script src="' . $extensionpath . '/scripts/jd.gallery.js" type="text/javascript"></script>' ); $outputPage->addScript( '<script src="' . $extensionpath . '/scripts/HistoryManager.js" type="text/javascript"></script>' );
and replace it with:
$outputPage->addHeadItem( 'smgal1','<script src="' . $extensionpath . '/scripts/mootools.uncompressed.js" type="text/javascript"></script>' ); $outputPage->addHeadItem( 'smgal2','<script src="' . $extensionpath . '/scripts/jd.gallery.js" type="text/javascript"></script>' ); $outputPage->addHeadItem( 'smgal3','<script src="' . $extensionpath . '/scripts/HistoryManager.js" type="text/javascript"></script>' );
pass parameters fix, in SmoothGallery.php (line 112):
function initSmoothGalleryTag( $input, $argv, $parser ) { $output = initSmoothGallery( $input, $args, $parser ); return $output; }
replace
function initSmoothGalleryTag( $input, $argv, $parser ) { $output = initSmoothGallery( $input, $argv, $parser ); return $output; }
Zck, actually your patch did not work completely for me. What worked was the hybrid approach fixing function initSmoothGalleryTag(), as suggested by you, and patching SmoothGalleryClass.php as suggested by me.
My configuration: MW 1.17, SG 1.1h
Great job Zck! Your Fix is working fine in Version MW 1.18.1, SG 1.1h. I didn't need to add Umoenks fix.
Regards Norbert
Zck your pass parameter fix has two blocks of code with the SAME code in each block.
function initSmoothGalleryTag( $input, $argv, $parser ) {
$output = initSmoothGallery( $input, $argv, $parser );
return $output;
}
for both. Is one supposed to be different?