Difference between revisions of "Reference:MultimediaViewer"
The MultimediaViewer extension gives the user of a wiki a different interface for viewing full-size, or nearly full-size, images in their browser without extraneous page loads or confusing interstitial pages.
Installation[edit | edit source]
Option A: use Vagrant. See the MediaWiki-Vagrant page for instructions to get a MediaWiki installation going with a Vagrant virtual machine system.
Then do vagrant enable-role multimediaviewer
and then vagrant provision
.
Option B: install manually.
First, consider installing Extension:BetaFeatures. It may be helpful to hide the media viewer feature behind a preference. If you don't install this, it will be enabled everywhere. MultimediaViewer uses the GetBetaFeaturePreferences hook, which is created and run from BetaFeatures, to register this preference.
You'll also likely want to download Extension:CommonsMetadata - it's not a hard requirement, but without it you won't get very much information in your lightboxes.
== Configuration ==
*$wgMediaViewerIsInBeta
will register a preference with ext-betafeatures>Extension:BetaFeatures</> if set to "true"
* $wgMediaViewerEnableByDefault
and $wgMediaViewerEnableByDefaultForAnonymous
will determine whether MMV is enabled by default for everyone and for anonymous users, respectively. They both default to true. $wgDefaultUserOptions['multimediaviewer-enable'] = 1;
can be used as a replacement for $wgMediaViewerEnableByDefault
.
* $wgMediaViewerUseThumbnailGuessing
will improve performance when enabled, but can be fragile depending on how the wiki is set up (it will probably work fine if you use a thumb>Manual:thumb.php</>).
;Forced download
To ensure files are offered for download and not viewed in the user's browser following a click on the Download … button, the server has to be configured, except when using vagrant:
If the requested URL to an image directory contains the download
query parameter, the Content-Disposition
-header must be set to attachment
.
This can be achieved in Apache and compatible servers using mod_rewrite and mod_headers in a .htaccess
file.
Varnish configuration can look like this.== Using the extension ==
First thing, before testing, is to make sure you're logged in and you have the preference enabled: Log in to the wiki and go to Special:Preferences, then visit the "Beta features" tab and check the appropriate box.
Next, go to a page that has a thumbnail on it. Try clicking on the image or on the "expand" icon near it. The lightbox should pop up and give you a bigger view of the image.
If you'd prefer, there's an [[<tvar|test>Extension:MultimediaViewer/Exported test wiki</>]] that you can use via Special:Import to quickly set up a suitable testing environment.== Extending with user scripts ==
If you want to add functionality, you'll have to dig around in the classes and change the functionality pretty manually. We'll work on making this a nicer experience, but given the class and method hierarchy we've built, we think it's not terribly difficult right now.
HOWEVER, you should avoid doing this too much. If things change internally, then your code might break in unexpected ways, and you (and your users) will be surprised. Don't let that happen, and wait for a more stable way to extend the product.
See [[<tvar|metadata>Extension:MultimediaViewer/Extension:Metadata</>]] for an example.== Templates ==
Multimedia Viewer and Upload Wizard needs several templates to show data of photos.
Just save this exported>Extension:MultimediaViewer/Exported test wiki</> in a xml file and import it in your wiki.
Source: mediawiki
The '''MultimediaViewer''' extension gives the user of a wiki a different interface for viewing full-size, or nearly full-size, images in their browser without extraneous page loads or confusing interstitial pages. == Installation == <!--T:3--> <!--T:4--><br />'''Option A''': use Vagrant. See the MediaWiki-Vagrant page for instructions to get a MediaWiki installation going with a Vagrant virtual machine system. <!--T:5--><br />Then do <code>vagrant enable-role multimediaviewer</code> and then <code>vagrant provision</code>. <!--T:6--><br />'''Option B''': install manually. <!--T:7--><br />First, consider installing Extension:BetaFeatures. It may be helpful to hide the media viewer feature behind a preference. If you don't install this, it will be enabled everywhere. MultimediaViewer uses the GetBetaFeaturePreferences hook, which is created and run from BetaFeatures, to register this preference. <!--T:8--><br />You'll also likely want to download Extension:CommonsMetadata - it's not a hard requirement, but without it you won't get very much information in your lightboxes. <br />== Configuration == <!--T:9--> <!--T:10--><br />*<code>$wgMediaViewerIsInBeta</code> will register a preference with ext-betafeatures>Extension:BetaFeatures</> if set to "true" <br /><br /><!--T:29--><br />* <code>$wgMediaViewerEnableByDefault</code> and <code>$wgMediaViewerEnableByDefaultForAnonymous</code> will determine whether MMV is enabled by default for everyone and for anonymous users, respectively. They both default to true. <code>$wgDefaultUserOptions['multimediaviewer-enable'] = 1;</code> can be used as a replacement for <code>$wgMediaViewerEnableByDefault</code>. <br /><br /><!--T:22--><br />* <code>$wgMediaViewerUseThumbnailGuessing</code> will improve performance when enabled, but can be fragile depending on how the wiki is set up (it will probably work fine if you use a thumb>Manual:thumb.php</>). <!--T:24--><br />;Forced download<br /><br /><!--T:25--><br />To ensure files are offered for download and not viewed in the user's browser following a click on the ''Download …'' button, the server has to be configured, except when using vagrant: <!--T:26--><br />If the requested URL to an image directory contains the <code>download</code> query parameter, the <code>Content-Disposition</code>-header must be set to <code>attachment</code>. <br /><br /><!--T:27--><br />This can be achieved in Apache and compatible servers [https://gerrit.wikimedia.org/r/#/c/120614/3/puppet/templates/content_disposition_attachment.conf.erb using mod_rewrite and mod_headers in a <code>.htaccess</code> file].<br /><br /><!--T:28--><br />Varnish configuration can look [https://gerrit.wikimedia.org/r/#/c/120617/7/templates/varnish/upload-frontend.inc.vcl.erb like this].== Using the extension == <!--T:11--> <!--T:12--><br />First thing, before testing, is to make sure you're logged in and you have the preference enabled: Log in to the wiki and go to Special:Preferences, then visit the "Beta features" tab and check the appropriate box. <!--T:13--><br />Next, go to a page that has a thumbnail on it. Try clicking on the image or on the "expand" icon near it. The lightbox should pop up and give you a bigger view of the image. <!--T:14--> <br />If you'd prefer, there's an [[<tvar|test>Extension:MultimediaViewer/Exported test wiki</>]] that you can use via Special:Import to quickly set up a suitable testing environment.== Extending with user scripts == <!--T:15--> <!--T:16--><br />If you want to add functionality, you'll have to dig around in the classes and change the functionality pretty manually. We'll work on making this a nicer experience, but given the class and method hierarchy we've built, we think it's not terribly difficult right now. <!--T:17--><br />'''HOWEVER''', you should avoid doing this too much. If things change internally, then your code might break in unexpected ways, and you (and your users) will be surprised. Don't let that happen, and wait for a more stable way to extend the product. <!--T:18--><br />See [[<tvar|metadata>Extension:MultimediaViewer/Extension:Metadata</>]] for an example.== Templates == <!--T:30--> <!--T:31--><br />Multimedia Viewer and Upload Wizard needs several templates to show data of photos.<br /><br /><br /><br /><!--T:32--><br />Just save this exported>Extension:MultimediaViewer/Exported test wiki</> in a xml file and import it in your wiki. '''Source: '''[https://www.mediawiki.org/wiki/Extension:MultimediaViewer mediawiki]
Line 15: | Line 15: | ||
<!--T:12--><br />First thing, before testing, is to make sure you're logged in and you have the preference enabled: Log in to the wiki and go to Special:Preferences, then visit the "Beta features" tab and check the appropriate box. | <!--T:12--><br />First thing, before testing, is to make sure you're logged in and you have the preference enabled: Log in to the wiki and go to Special:Preferences, then visit the "Beta features" tab and check the appropriate box. | ||
<!--T:13--><br />Next, go to a page that has a thumbnail on it. Try clicking on the image or on the "expand" icon near it. The lightbox should pop up and give you a bigger view of the image. | <!--T:13--><br />Next, go to a page that has a thumbnail on it. Try clicking on the image or on the "expand" icon near it. The lightbox should pop up and give you a bigger view of the image. | ||
− | <!--T:14--><br /> | + | <!--T:14--> |
+ | <br />== Extending with user scripts == <!--T:15--> | ||
<!--T:16--><br />If you want to add functionality, you'll have to dig around in the classes and change the functionality pretty manually. We'll work on making this a nicer experience, but given the class and method hierarchy we've built, we think it's not terribly difficult right now. | <!--T:16--><br />If you want to add functionality, you'll have to dig around in the classes and change the functionality pretty manually. We'll work on making this a nicer experience, but given the class and method hierarchy we've built, we think it's not terribly difficult right now. | ||
<!--T:17--><br />'''HOWEVER''', you should avoid doing this too much. If things change internally, then your code might break in unexpected ways, and you (and your users) will be surprised. Don't let that happen, and wait for a more stable way to extend the product. | <!--T:17--><br />'''HOWEVER''', you should avoid doing this too much. If things change internally, then your code might break in unexpected ways, and you (and your users) will be surprised. Don't let that happen, and wait for a more stable way to extend the product. | ||
− | <!--T:18--><br /> | + | <!--T:18--><br /><br /><br /><!--T:32--><br />Just save this exported>Extension:MultimediaViewer/Exported test wiki</> in a xml file and import it in your wiki. |
− | |||
'''Source: '''[https://www.mediawiki.org/wiki/Extension:MultimediaViewer mediawiki] | '''Source: '''[https://www.mediawiki.org/wiki/Extension:MultimediaViewer mediawiki] |