MediaWiki
Developer(s) | Wikimedia Foundation |
---|---|
Stable release | |
Repository | |
Operating system | Cross-platform |
Type | Wiki |
License | GNU General Public License |
Website | http://www.mediawiki.org/ |
MediaWiki is a web-based wiki software application used by all projects of the Wikimedia Foundation, all wikis hosted by Wikia, and many other wikis, including some of the largest and most popular ones.[1] Originally developed to serve the needs of the free content Wikipedia encyclopedia, today it has also been deployed by companies as an internal knowledge management solution, and as a content management system. Notably, Novell uses it to operate several of its high traffic websites, which are not editable by the general public.[2]
MediaWiki is written in the PHP programming language, and can use either the MySQL or PostgreSQL relational database management system. MediaWiki is distributed under the terms of the GNU General Public License.
History
The software was originally written for Wikipedia by the German University of Cologne student and developer Magnus Manske. Wikipedia had previously used a small wiki engine called UseModWiki written in Perl. On January 25 2002, Wikipedia was switched to Manske's software to offer more functionality and build upon a scalable infrastructure (i.e. a MySQL database). However, the first implementation resulted in significant performance issues, and the software was substantially rewritten by Lee Daniel Crocker. Later on, Brion Vibber would take up the role of release manager and most active developer.[citation needed]
Since the release of the first version of Manske's script, the software had been given multiple nicknames representing the state of development—"the PHP script", "phase II", "phase III", "the new codebase"—but no product name. After the Wikimedia Foundation was announced on June 20 2003, the name "MediaWiki" was coined by Wikipedia contributor Daniel Mayer as a play on "Wikimedia," [3] and the name was gradually phased in beginning in August 2003. The name has frequently caused confusion due to its intentional similarity to the "Wikimedia" name (which itself is similar to "Wikipedia"). Nevertheless, "MediaWiki" has become a recognizable brand, with a Google search yielding over 165 million results on the name in April 2007.
The product logo was created by Erik Moeller using a flower photograph taken by Florence Nibart-Devouard, and was originally submitted to an international logo contest for a new Wikipedia logo held in summer 2003.[4] The logo came in third place, and was chosen to represent MediaWiki instead of Wikipedia, with the second place logo used for the Wikimedia Foundation and the first place logo for Wikipedia itself.[5]
Release history
Version number | Date | Notable changes |
---|---|---|
1.1[6] | December 8 2003 |
|
1.2[7] | March 24 2004 |
|
1.3[8] | August 11 2004 |
|
1.4[9] | March 20 2005 |
|
1.5[10] | October 5 2005 |
|
1.6[11] | April 5 2006 |
|
1.7[12] | July 7 2006 |
|
1.8[13] | October 10 2006 |
|
1.9[14] | January 10 2007 |
|
1.10[15] | May 9 2007 |
|
Key features
MediaWiki provides a rich core feature set and a mechanism to attach extensions to provide additional functionality. Due to the strong emphasis on multilinguality in the Wikimedia projects, internationalization has received significant attention by developers. The user interface has been fully or partially translated into more than 70 languages, and can be further customized by site administrators (the entire interface is editable through the wiki). Because Wikipedia is one of the world's largest websites, achieving scalability through multiple layers of caching and database replication has also been a major concern for developers. Wikipedia and other Wikimedia projects continue to define a large part of the requirement set for MediaWiki.
Links
One of the earliest differences between MediaWiki (and its predecessor, UseModWiki) and other wiki engines was the use of "free links" instead of CamelCase. Where, in a typical wiki, a text like "WorldWideWeb" would have to typed to create a link to a page about the World Wide Web, links in MediaWiki are created by surrounding words with double square brackets, and any spaces between them are left intact, e.g. [[World Wide Web]]. This change was logical for the purpose of creating an encyclopedia, where accuracy in titles is very important.
Namespaces
MediaWiki provides many features beyond hyperlinks for structuring content. One of the earliest features is namespaces. One problem for Wikipedia had long been the separation of encyclopedic content from discussions surrounding it, as well as personal pages about encyclopedia editors. Namespaces are prefixes before a page title (like "User:" or "Talk:") which allow a page to exist under multiple names, but serving different purposes depending on their prefix. For instance, a page "[[The Terminator]]" could describe the 1984 movie starring Arnold Schwarzenegger, while a page "[[User:The Terminator]]" could be a profile describing a user who chooses this name as a pseudonym. More commonly, each page has an associated "Talk:" page which can be used to discuss its contents.
Namespaces can be viewed as folders which separate different basic types of information or functionality. While new namespaces can be added, the number of namespaces in a wiki is typically relatively low.
Subpages
In addition to namespaces, pages can be structured using subpages. This simple feature provides automatic backlinks from a page of the pattern [[Page title/Subpage title]] to the component before the slash (in this case, "Page title").
Categories
Finally, MediaWiki supports user-created categories. These are similar to tags used in many web applications, but hierarchical and descriptive. In large wikis like Wikipedia, very complex hierarchies have grown using this system without any central planning.[16]
Editable interface
The entire MediaWiki user interface can be edited through the wiki itself by users with the necessary permissions (typically so-called "administrators"). This is done through a special namespace with the prefix "MediaWiki:", where each page title identifies a particular user interface message. The "MediaWiki:" namespace was also originally used for creating custom text blocks that could then be dynamically loaded into other pages using a special syntax. This content was later moved into its own namespace, "Template:".
Templates
Templates are text blocks which can be dynamically loaded inside another page whenever that page is requested. Templates support parameters, so that parts of the text can be substituted for each specific use case.
Templates have found many different uses, such as:
- Identifying problems with a Wikipedia article by putting a template (also called "tag" in this context) such as {{Disputed}} on the article. This template will then output a graphical box stating that the article is disputed, and also categorize it so that articles of this nature can be located.
- Creating complex table layouts which are used consistently across multiple pages, and where only the content of the tables gets inserted using template parameters.
- Sending users standard messages when they are blocked from editing, when their behavior is considered inappropriate, and so on. For this purpose, template substitution can be used: Instead of loading the template contents dynamically whenever the page is loaded, the contents of the template are inserted exactly once into the target page, similar to a copy and paste operation.
Media content
As the name MediaWiki suggests, the software has become ever more powerful at dealing with a wide variety of uploaded media files. Its richest functionality is in the area of images, where image galleries and thumbnails can be generated with relative ease if the software is set up correctly. There is also support for Exif metadata. The use of MediaWiki to operate the Wikimedia Commons, one of the largest free content media archives, has driven the need for further functionality in this area.
WYSIWYG
MediaWiki currently provides no native WYSIWYG support, though it does come with a graphical toolbar for simplifying the process of learning the wiki syntax. It also has a simple interface to allow the transparent use of external editors for uploaded files and wiki pages.
Sections
To make editing long pages such as comprehensive Wikipedia articles easier, MediaWiki supports editing only a small subsection of a page (as identified by its header).
Rich content
MediaWiki also supports rich content generated through specialized syntax. For example, the software comes with support for rendering mathematical formulas using LaTeX and a special parser written in OCaml. Similar functionality for other content, ranging from graphical timelines over mathematical plotting and musical scores to Egyptian hieroglyphs, is available in the form of extensions.
Customisable interface
If the feature is enabled, users can also customize their stylesheets and configure client-side JavaScript to be executed with every pageview. On Wikipedia, this has led to a large number of additional tools and helpers developed through the wiki and shared among users. For instance, Lupin's navigation popups is a custom JavaScript tool that shows previews of articles when the user hovers over links, and also provides shortcuts for common maintenance tasks.[17] Another example is wikEd, a full-featured MediaWiki-integrated text editor that provides syntax highlighting and search and replace functions. [18]
Access and groups
While MediaWiki comes with a basic set of features related to restricting access and defining user groups, page access control does not tend to be given high priority in development. For instance, it is not possible to define the access permissions to pages on a per-namespace basis. Here, wikis like TWiki and MoinMoin provide more power by supporting advanced security mechanisms like Access Control Lists.
Extensions
The MediaWiki codebase contains various "hooks" where additional code can be attached. This allows programmers to write extensions without modifying the core or having to submit their code for review. Installing an extension typically consists of adding a line to the configuration file, though in some cases additional changes such as database updates are required.
Many of the available extensions are simple scripts to allow embedding content such as Adobe Flash files or HTML forms. Others add complex new behavior to the wiki syntax, such as Semantic MediaWiki which provides the ability to add structured and searchable relations and attributes to wiki pages (cf. semantic web). The Wikimedia Foundation operates a Subversion server where many extensions are hosted, and a directory of them can be found on the MediaWiki website.[19]
Performance
Because it is used to run one of the highest traffic sites on the World Wide Web, Wikipedia, MediaWiki performance and scalability have been highly optimized. MediaWiki supports Squid caches, load balanced database replication, client-side caching, memcached or table-based caching for frequently accessed processing or query results, a simple static file cache, feature-reduced operation, revision compression, and a job queue for database operations.
MediaWiki may be overdimensioned for small-scale usage, where its large feature set and use of a database backend take a performance toll[citation needed]. On the other hand, the software is suitable for the operation of large scale wiki farms, such as the Wikimedia project and language family. However, MediaWiki comes with no built-in functionality to manage such installations.
Limitations
Aside from the aforementioned lack of WYSIWYG features, user documentation is found online only (there is no printed manual) and is not proprietary (dozens of authors have contributed to the documentation). The installation and usage of the Mediawiki software is not intuitive for inexperienced computer users (compared to purpose made software such as FrontPage for example).
References
- ^ "WikiStats by S23 - List of largest wikis".
- ^ e.g.: http://developer.novell.com/ ; http://hula-project.org/ ; http://en.opensuse.org/ ; http://www.ifolder.com/
- ^ Mayer, Daniel. "Phase IV, Wikibooks.org/.com and WikimediaFoundation.org/.com (was Wikis and uniformity)". Wikipedia-L mailing list archives.
- ^ Wikimedia contributors (2007-01-10). "International logo contest/results". Meta-wiki. Wikimedia Foundation. Retrieved 2007-03-14.
{{cite web}}
:|author=
has generic name (help); Check date values in:|date=
(help) - ^ Wikimedia contributors (2007-01-17). "Historical/Logo history". Meta-wiki. Wikimedia Foundation. Retrieved 2007-03-14.
{{cite web}}
:|author=
has generic name (help); Check date values in:|date=
(help) - ^ Full release notes 1.1
- ^ Full release notes 1.2
- ^ Full release notes 1.3
- ^ Full release notes 1.4
- ^ Full release notes 1.5
- ^ Full release notes 1.6
- ^ Full release notes 1.7
- ^ Full release notes 1.8
- ^ Full release notes 1.9
- ^ Full release notes 1.10
- ^ Compare Erik Zachte's category trees generated from Wikipedia category information.
- ^ "Lupin". "Wikipedia:Tools/Navigation popups".
- ^ "Cacycle". "wikEd".
- ^ see http://www.mediawiki.org/wiki/Extension:Contents
See also
- Comparison of wiki software
- GetWiki: a fork.
- IpbWiki - Integration of Invision Power Board with MediaWiki
- List of content management systems
- List of wiki software