MediaWiki/Presentation
Contents
Intro
These screenshots of sites running MediaWiki illustrate the breadth of usage in the software world, and also some compelling theming examples.
Audio of my presentation is at http://www.archive.org/details/collaboration.at.wiki.speed-audio-part1
What's a Wiki?
Wiki is the Hawaiian word for quick, and Ward Cunningham - the inventor of the wiki - named his project after the wiki wiki shuttle. A backcronym that is probably equally apropos is WIKI stands for "What I Know Is..." MediaWiki is the free software (GPL) that runs Wikipedia under the auspices of the Wikimedia Foundation.
Meet the speaker
I'm Greg Rundlett [1] [2] [3], a free software advocate who lives in Newburyport, MA with my wife and two sons.
Using it - Why?
Wikis are immensely popular and come in many flavors. It was late 2006 to early 2007 when 'wiki' reached it's zenith as a buzzword in the news.[1] But wikis have not faded into the sunset like last years fashion. I'll point out a few reasons why you should choose MediaWiki as your wiki platform.
It's the most popular wiki software in the world; both in terms of hosting the largest single wiki WikiPedia as well as deployments by all sort of individuals, groups and corporations. In practical terms that means people you hire will know MediaWiki. The growth curve of MediaWiki is exponential. The quality of the software is excellent. Does your wiki have conferences?
WikiPedia now has over ten million articles across 250 languages!
Does your wiki have a foundation to keep it going?
Does your wiki have a multimedia repository which hosts over 3,400,000 multimedia files? Wikimedia Commons does.
Syntax
I do want to point out that MediaWiki does not use CamelCase words in order to make a link. This means a lot to all the Irish people of the world, and also the marketers who seem pretty convinced of the coolness of McWords like ThinkPad, etc.
MediaWiki syntax is easy to learn, and easy to use. In fact, you might already be using it without even knowing it.
- this
- is
- a list
and
- Family
- Community
- Work
- Country
is an ordered list.
http://example.com links are automatic and by using a simple bracket notation, you can make them prettier and more meaningful e.g.
[http://www.vimeo.com/2142196 See the kids in their Halloween costumes]
yields
See the kids in their Halloween costumes
Editor Options
- WYSIWYG editor
- Weird Yucky Sucky Interference With Your Goodness
- WikEd is a full wysiwyg editor with special features for MediaWiki. You can install it for yourself in a single browser as a user script http://userscripts.org/scripts/show/12529 or you can install it into your MediaWiki installation.
- FCK Editor is a full wysiwyg editor that includes page link searching as you type
- Java project called Textile-J is now an Eclipse plugin called the "Mylyn WikiText component" that does wiki markup http://www.eclipseplugincentral.com/Web_Links-index-req-viewlink-cid-1098.html
- Kaltura does a collaborative video editing solution http://corp.kaltura.com/wiki/index.php/MediaWiki_Extension
WikEd
- Wikicode syntax highlighting
- Pasting, import, and conversion of formatted text, e.g. from Microsoft-Word and web pages
- Regular expression search and replace
- Edit preview and show changes on the same page without reloading
- Fullscreen editing mode
- Single-click fixing of common mistakes
- History for summary, search, and replace fields
- Jump to selected heading
- Type-ahead find
- Support for many languages
- Improved diff display
- Follow links and wiki-links (ctrl-click)
- Runs automatically on every MediaWiki installation when installed as a local Greasemonkey user script
For more details, see the WikEd homepage
FCK Editor
In 2007 it was announced that a WYSIWYG editor would be built for MediaWiki. Wikia (Jimmy Wales' for-profit venture) started work on it. It still isn't ready for prime time. Note that I had to patch a minor bug to get it to work and even then, it did funny things with my article (wanted to collapse a line-break between template tag and next line resulting in a space being inserted prior to the next line, resulting in preformatted text rendering for that line.
OpenOffice
OpenOffice (since v. 2.3) has had a built-in "Export to MediaWiki" menu option. So, you can write an article in OpenOffice Writer (or StarOffice Writer) and export the file to wiki markup. This could be useful particularly if you want to convert large collections of Word documents. One drawback to "export" is that you would still have to copy and paste that output into the wiki. http://extensions.services.openoffice.org/project/wikipublisher is the extra hook that allows you to save your page in the wiki (essentially registering your user data in the instance of OpenOffice
Other points about using MediaWiki
- Style sheets and
- Use this http://userscripts.org/scripts/show/6372 Greasemonkey script to show any MediaWiki page as a presentation
Features
- Recent Changes
- Watchlist
- Preferences
- Automatic TOC
- Section editing
- Magic words
__NOTOC__, __TOC__ #REDIRECT __HIDDENCAT__
{{NUMBEROFARTICLES}} {{NUMBEROFEDITS}} {{NUMBEROFUSERS}}
- Search - OpenSearch
- Interwiki links
- Import/Export (TODO talk about exporting to text)
- Special pages
[[Special:ListGroupRights]]
- Image Galleries like Special:NewImages
- SVG support
- Protection (lock a page) Not to be confused with 'versions' that helps with things like versioned documentation for software products.
- Microformats Wikipedia implements microformats easily because through the power of templates, an author can fill out a template and not even know that he is using microformats in the final product. Firefox, through the tails extension, can export microformats via bluetooth, so that an employee directory on your intranet can talk to your mobile phone. @TODO: write up a contact template, a contact page and test the export
Creating Structure
- Wikifarm
- Namespaces or go directly to Special:PrefixIndex
- Main
- What is sounds like, there is no need to specify this namespace when making links
- Image
- Used for all file uploads, whether image, video, sound, doc or whatever. Each upload creates it's own article within this namespace
- Project
- Used as a "About Us" namespace -- not used for the main content of your wiki, but normally reserved for pages about the project which created the wiki. If you need to do a substantial edit to a template and want to try it out, one method of doing that would be to copy the article into the project namespace, use the new template, and your article wouldn't be normally included in search results.
- Help
- What it sounds like, this namespace is unfortunately empty with a new installation. See MediaWiki/Help
- Template
- Category
- Special
- MediaWiki
- MediaWiki:Sidebar
- Subpages
- Templates "transclusion"
<noinclude> </noinclude> <includeonly></includeonly>
Template:Messagebox example.- arguments
- Templates used on this page
- copying from MediaWiki Special:ExpandTemplates
- Categories
- Navigation (talk about in Administration)
Administering it
The LocalSettings.php file is the main point of configuration for the wiki administrator. It overrides all the defaults set in includes/DefaultSettings.php
## Database settings
## moved to a separate file so that we can track changes to the general config in version control, without checking in our db credentials
require_once( "$IP/DatabaseSettings.php" );
One good practice is to have some sort of text version or other backup of your wiki in case the machine, webserver, or database that the system depends on is down. As an administrator, you can use the dumpBackup.php script found in the maintenance
directory of you MediaWiki installation. Something like the following in a system cron would be good:
/usr/bin/php /var/www/phase3/maintenance/dumpBackup.php --current --output=file:/var/backups/example.com/`date +%F`-wiki.text.export.txt
As a user, one tool that can come in handy is Special:Wiki2XML [2]
Another useful tool to the Administrator is the bulk image importer. To import all the screenshots that I used at the start of this presentation, I did the following:
php importImages.php --user=Freephile --comment='Set of screenshots of sites using MediaWiki ' ~/Desktop/mediawiki/snaps/
Note how using a Category tag in the comment will automatically place the images in the Category specified.
Developing it
- Theming
- Extensions
- Conversion of existing wikis and documents Format conversion
- APIs are very useful to developers. MediaWiki Developers can use the Application Programming Interface for MediaWiki which gets exposed at /api.php, as well as the http://meta.wikimedia.org/wiki/Pywikipediabot framework which helps to automate manipulation of the wiki.
- Database
Theming
The quickest thing you do is change the menu and the logo see MediaWiki/Theming
Extensions
So many examples, which ones to highlight?
Any wiki site you visit, you can see the installed extensions by viewing the Special:Version page
- http://wiki.case.edu/Special:Version
- http://help.wikia.com/wiki/Special:Version
- http://wiki.eclipse.org/index.php/Special:Version
See more at MediaWiki/Extensions
Timelines
- http://www.MediaWiki.org/wiki/Extension:EasyTimeline
- http://www.ehartwell.com/InfoDabble/MediaWiki_extension:_Timeline
MIT's SIMILE project Timeline is integrated into Semantic MediaWiki
Database
The MediaWiki software uses a MySQL database backend to store content and other data. The MediaWiki/Sql article offers a couple helpful queries; whereas mw:Manual:Database_access covers this area more completely including info on API functions and wrappers.
Getting it, Installing it
MediaWiki is developed using a Continuous Integration approach meaning that their trunk is tested and running in production http://www.MediaWiki.org/wiki/Version_lifecycle
Version | Release date | End-of-life |
---|---|---|
1.14.x | Not released | |
1.13.x | August 14, 2008 | August 2009 |
1.12.x | March 20, 2008 | March 2009 |
1.11.x | September 10, 2007 | September 2008 |
use svn to get it, and that way updating your installation is as simple as svn up
In Production
Creating Slideshows
<slide>pixel</slide>
will create a nice slideshow
<slide>pixel</slide> from http://meta.wikimedia.org/wiki/User:BR/S5_slide_for_mediawiki_documentation/en
Integration with Software Development
- CodeReview http://www.MediaWiki.org/wiki/Extension:CodeReview e.g. http://www.MediaWiki.org/wiki/Special:Code/MediaWiki/44245#c829
- ExtensionDistributor (info) is a tool that automatically packages code from subversion and sends the user a tarball. There is a lot of interesting information at wikitech that describes how the WikiMedia Foundation is operated technically
Setup for an intranet and/or KB
- Namespaces
- Wiki farm ala Drupal multisite
Publishing
Wiki is quick markup. Feed recent changes into publishing system that moves those out into front-end -- even static. In this sense, you can have editors feeding content into your website. We did this at Raging Bull - a company that I worked at back in 1999 (already several years after Ward Cunningham first developed the wiki concept).
Another example that is clearly "publishing"-centric is the way that wikis are used to put books online:
- http://cyber.law.harvard.edu/wealth_of_networks/Main_Page (@TODO add thumbnails) Watch Yochai Benkler's presentation over at TED.org
- http://en.wikibooks.org/wiki/Main_Page
One Hack
Uselang (show image)
- http://commons.wikimedia.org/wiki/MediaWiki:UploadForm.js/Documentation
- http://commons.wikimedia.org/wiki/Commons:Redesigning_the_upload_form
- http://www.MediaWiki.org/wiki/User:Pfctdayelise/Manual:Uselang_hack
Resources
- Daniel J. Barrett wrote the MediaWiki Book published by O'Reilly ISBN 978-0596519797 (no need for any special markup, ISBN numbers are automatically recognized by the parser. You can also visit Special:BookSources)
- IRC
- Documentation (remember user at Help:Contents and admin at Manual:Contents)
- Source
- More user scripts
- WikiMania videos, audio and transcripts