Wiki

From Ptypeswiki

A wiki (IPA: Template:IPA <wee-kee> or Template:IPA <wick-ey>Template:Ref) is a type of website that allows anyone visiting the site to add, to remove, or otherwise to edit all content, very quickly and easily, sometimes without the need for registration. This ease of interaction and operation makes a wiki an effective tool for collaborative writing. The term wiki is a shortened form of wiki wiki which is from the native language of Hawaii (Hawaiian), where it is commonly used as an adjective to denote something "quick" or "fast" (Hawaiian dictionary).

The term Wiki can also refer to the collaborative software itself (wiki engine) that facilitates the operation of such a website (see wiki software).

In essence, a wiki is a simplification of the process of creating HTML pages combined with a system that records each individual change that occurs over time, so that at any time, a page can be reverted to any of its previous states. A wiki system may also include various tools, designed to provide users with an easy way to monitor the constantly changing state of the wiki as well as a place to discuss and resolve the many inevitable issues, namely, the inherent disagreement over wiki content. Wiki content can also be misleading, as users are bound to add incorrect information to the wiki page.

Most wikis will allow completely unrestricted access so that people are able to contribute to the site without necessarily having to undergo a process of 'registration', as had usually been required by various other types of interactive websites such as Internet forums or chat sites.

The first wiki, WikiWikiWeb, is named after the "Wiki Wiki" line of Chance RT-52 buses in Honolulu International Airport, Hawaii. It was created in 1994 and installed on the web in 1995 by Ward Cunningham, who also created the Portland Pattern Repository.

Wiki is sometimes interpreted as the backronym for "What I know is", which describes the knowledge contribution, storage and exchange function.


Contents

Key characteristics

A wiki enables documents to be written collectively in a very simple markup language using a web browser. A single page in a wiki is referred to as a "wiki page", whilst the entire body of pages, which are usually highly interconnected via hyperlinks, is "the wiki"; in effect, a wiki is a very simple, easy-to-use user-maintained database for searching information.

A defining characteristic of wiki technology is the ease with which pages can be created and updated. Generally, there is no review before modifications are accepted. Most wikis are open to the general public without the need to register any user account. Sometimes session log-in is requested to acquire a "wiki-signature" cookie for autosigning edits. More private wiki servers require user authentication. However, many edits can be made in real-time, and appear almost instantaneously online. This can often lead to abuse of the system.

Pages and editing

In a traditional wiki, there are three representations for each page :

  • The user-editable "source code", which is also the format stored locally on the server. It is usually plain text, made visible to the user only when the edit operation shows it in a browser form.
  • A template (possibly internally generated) that defines layout and elements common to all pages.
  • The rendered HTML code produced by the server on the fly from the source text when a particular page is requested.

The source format, sometimes known as "wikitext", is augmented with a simplified markup language to indicate various structural and visual conventions. An often used example of one such convention is to start a line of text with an asterisk ("*") in order to mark it as an item in a bulleted list. Style and syntax can vary a great deal among implementations, some of which also allow HTML tags.

The reasoning behind this design is that HTML, with its many cryptic tags, is not especially human-readable. Making typical HTML source visible makes the actual text content very hard to read and edit for most users. It is therefore better to promote plain-text editing with a few simple conventions for structure and style.

It is also somewhat beneficial that users cannot directly use all the functionality that HTML allows, such as JavaScript and Cascading Style Sheets. Consistency in look and feel is also achieved, along with some extra safety for the user. In many wiki implementations, an active hyperlink is exactly as it is shown, unlike in HTML where the invisible hyperlink can have an arbitrary visible anchor text.

The use of wikitext, and not HTML directly, is also important for security reasons. By allowing the users to write in HTML, possible harmful or annoying code may be written. For example, a JavaScript code that prevents the reader from marking part of the text.

Wiki syntax (MediaWiki) HTML Rendered output
"''Doctor''? No other title? A ''scholar''? And he rates above the civil authority?"

"Why, certainly," replied Hardin, amiably. "We're all scholars more or less. After all, we're not so much a world as a scientific foundation&mdash;under the direct control of the Emperor."

<p>

&quot;<em>Doctor</em>? No other title? A <em>scholar</em>? And he rates above the civil authority?&quot;
</p>
<p>
&quot;Why, certainly,&quot; replied Hardin, amiably. &quot;We're all scholars more or less. After all, we're not so much a world as a scientific foundation&mdash;under the direct control of the Emperor.&quot;
</p>

"Doctor? No other title? A scholar? And he rates above the civil authority?"

"Why, certainly," replied Hardin, amiably. "We're all scholars more or less. After all, we're not so much a world as a scientific foundation—under the direct control of the Emperor."

(Quotation above from Foundation by Isaac Asimov)

Some recent wiki engines use a different method: they allow "WYSIWYG" editing, usually by means of JavaScript or an ActiveX control that translates graphically entered formatting instructions, such as "bold" and "italics", into the corresponding HTML tags. In those implementations, the markup of a newly-edited HTML version of the page is generated and submitted to the server transparently, and the user is shielded from this technical detail. Users who do not have the necessary plugin can generally edit the page, usually by directly editing the raw HTML code. More recently, wiki engines are generating wiki syntax instead of HTML. This way, users who are comfortable editing in wiki syntax can carry on.

Standard

While for years the de facto standard was the syntax of the original WikiWikiWeb, currently the formatting instructions vary depending on the wiki engine. Simple wikis allow only basic text formatting, whereas more complex ones have support for tables, images, formulas, or even interactive elements such as polls and games. Many people switch between wiki engines, from one to another. Because of the difficulty in using several syntaxes, many people are putting considerable effort into defining a wiki markup standard (see efforts by Meatball and TikiWiki).

Linking and creating pages

Wikis are a true hypertext medium, with non-linear navigational structures. Each page typically contains a large number of links to other pages. Hierarchical navigation pages often exist in larger wikis, often a consequence of the original page creation process, but they do not have to be used. Links are created using a specific syntax, the so-called "link pattern".

Originally, most wikis used CamelCase as a link pattern, produced by capitalizing words in a phrase and removing the spaces between them (the word "CamelCase" is itself an example of CamelCase). While CamelCase makes linking very easy, it also leads to links which are written in a form that deviates from the standard spelling. CamelCase-based wikis are instantly recognizable because they have many links with names such as "TableOfContents" and "BeginnerQuestions". Note that it is possible for a wiki to render the visible anchor for such links "pretty" by reinserting spaces, and possibly also reverting to lower case. However, this reprocessing of the link to improve the readability of the anchor is limited by the loss of capitalization information caused by CamelCase. For example, "RichardWagner" should be rendered as "Richard Wagner", whereas "PopularMusic" should be rendered as "popular music". There is no easy way to determine which capital letters should remain capitalized.

Searching

Most wikis offer at least a title search, and sometimes a full-text search. The scalability of the search depends on whether the wiki engine uses a database; indexed database access is necessary for high speed searches on large wikis. On Wikipedia, a wiki-based encyclopedia, the so-called "Go button" allows readers to view a page that matches the entered search criteria as closely as possible. The MetaWiki search engine was created to enable searches across multiple wikis. Search is keyword-based.

Server-side versus client-side wiki

By far, the most common wiki systems are server-side (Wikipedia is a server-side wiki). In essence, the edit, display and control functions are provided on the server through the wikiengine that renders the content into a HTML-based page for display in a web browser.

A client-side wiki system only requires the server to "serve" wiki files in much the same way as a web server allows HTML files to be retrieved using HTTP. In this type of wiki system, all the execution required to convert the underlying wiki text into an onscreen formatted display page could reside in the client browser. Likewise, the editing tools and functionality reside with the browser.

The client-side wiki system parallels HTML in that the page becomes a rendering instruction for the browser to interpret. Client-side wiki systems may be little more than a code plugin to a traditional web browser.

Controlling changes

File:History comparison example.png
History comparison reports highlight the changes between two revisions of a page.

Wikis are generally designed with the philosophy of making it easy to correct mistakes, rather than making it difficult to make them. Thus while wikis are very open, they provide a means to verify the validity of recent additions to the body of pages. The most prominent, on almost every wiki, is the "Recent Changes" page—a specific list numbering recent edits, or a list of all the edits made within a given timeframe. Some wikis can filter the list to remove minor edits and edits made by automatic importing scripts ("bots").


From the change log, other functions are accessible in most wikis: the Revision History showing previous page versions; and the diff feature, highlighting the changes between two revisions. Using the Revision History, an editor can view and restore a previous version of the article. The diff feature can be used to decide whether or not this is necessary. A regular wiki user can view the diff of an edit listed on the "Recent Changes" page and, if it is an unacceptable edit, consult the history, restoring a previous revision; this process is more or less streamlined, depending on the wiki software used.

In case unacceptable edits are missed on the "Recent Changes" page, some wiki engines provide additional content control. It can be monitored to ensure that a page, or a set of pages, keeps its quality. A person willing to maintain pages will be warned of modifications to the pages, allowing him or her to verify the validity of new editions quickly.

Vandalism

The open philosophy of most wikis—of allowing anyone to edit content—does not ensure that editors are well intentioned. Wiki vandalism is a constant problem for wikis, although some sources with little relevant experience with wikis tend to exaggerate the danger of vandalism. Studies from IBM claim that most vandalism to Wikipedia is reverted in 5 minutes or less [1]. However, in some cases it takes longer, as in the John Seigenthaler Sr. Wikipedia biography controversy. In some cases, user accounts or IP addresses are banned from editing certain wikis to prevent further vandalism.

History

Wiki software originated in the design pattern society as a way of writing and discussing pattern languages. The WikiWikiWeb was the first wiki, established by Ward Cunningham on March 25, 1995, as a complement to the Portland Pattern Repository. [2] He invented the wiki name and concept, and implemented the first wiki engine. Some people maintain that only the original wiki should be called Wiki (upper case) or the WikiWikiWeb.

Cunningham coined the term wiki after the "wiki wiki" or "quick" shuttle buses at Honolulu Airport. Wiki wiki was the first Hawaiian term he learned on his first visit to the islands, when the airport counter agent directed him to take the wiki wiki bus between terminals. According to Cunningham, "I chose wiki-wiki as an alliterative substitute for 'quick' and thereby avoided naming this stuff quick-web." [3] See also: List of computer term etymologies.

According to Cunningham, ideas of wiki can be traced back to a HyperCard stack he wrote in the late 1980s. He found the original way of creating links difficult to use, and used the capacity of HyperCard to add a new feature so that users only need to type links into a specific field. The field would add a button to the link, and the button would take users to the card if the card already existed, or create a card for users. He showed his cards to many friends, and always someone would find something wrong, and they could correct mistakes or add new links on the spot. Later, Cunningham added a multi-users authoring facility, which would automatically update a "Recent Changes" card. [4]

In the late 1990s, wikis were increasingly recognized as a promising way to develop private- and public-knowledge bases, and this potential inspired the founders of the Nupedia encyclopedia project, Jimmy Wales and Larry Sanger, to use wiki technology as a basis for an electronic encyclopedia: Wikipedia was launched in January 2001; it originally was based upon UseMod software, but later switched to its own, open source codebase, now adopted by many other wikis.

In the early 2000s, wikis were increasingly adopted in the enterprise as collaborative software. Common uses included project communication, intranets and documentation, initially for technical users. In December 2002, Socialtext launched the first commercial open source wiki solution. Open source wikis such as MediaWiki, Kwiki and TWiki grew to over 1 million downloads on the Sourceforge repository by 2004. Today some companies use wikis as their only collaborative software and as a replacement for static intranets. There is arguably greater use of wikis behind firewalls than on the public internetTemplate:Citeneeded.

In 2005, the Los Angeles Times experimented with using a wiki in the editorial section of its web site. The Wikitorial project was soon shut down as vandals defaced it.

Wiki communities

Many wiki communities are private, particularly within enterprises as collaborative software. They are often used as internal documentation for in-house systems and applications. The democratic, all-encompassing nature of Wikipedia is a significant factor in its growth, while many other wikis are highly specialized. Wikipedia is designed to cater to all groups and is dedicated to providing balanced opinions and articles with the sole purpose of informing.

Today, the English-language Wikipedia is, by far, the world's largest wiki; the German-language Wikipedia is the second-largest, whilst the other Wikipedias fill many of the remaining upper slots. Other large wikis include the WikiWikiWeb, Wikitravel, World66 and Susning.nu, a Swedish-language knowledge base. The largest wikis are listed at meta:List of largest wikis and Meatball: Biggest wikis. Many public wikis are listed at WikiIndex - a wiki of wiki. Opinion Republic [5] is an experiment to capture public opinion and then converge on the most broadly accepted opinions. The Science of Spectroscopy [6] is an educational wiki that enables teachers around the world to share, refine and use science teaching material.

One way of finding a wiki on a specific subject is to follow the wiki-node network from wiki to wiki; another is to take a Wiki bus tour: TourBusStop. Domain names containing "wiki" are growing in popularity to support specific niches.

There exist WikiNodes — pages on wikis describing related wikis. They are usually organized as neighbors and delegates. A neighbor wiki is simply a wiki that may discuss similar content or may otherwise be of interest. A delegate wiki is a wiki that agrees to have certain content delegated to that wiki.

For those interested in creating their own wiki, there are many publicly available "wiki farms", some of which can also make private, password-protected wikis. JotSpot, OddWiki, PeanutButterWiki, SeedWiki, Socialtext, Wikia, and Wikispaces are seven such services; more at List of wiki farms.

References

See also

Template:Sisterlinks

External links

Notes

Template:Note according to Ward Cunningham


af:Wiki ar:ويكي an:Wiki bg:Уики bm:Wiki bn:উইকি zh-min-nan:Wiki ca:Wiki cs:Wiki da:WikiWiki de:Wiki et:Wiki el:Wiki es:Wiki eo:Vikio eu:Zer da wiki bat? fa:ویکیویکی fo:WikiWiki fr:Wiki ga:Vicí gl:Wiki ko:위키위키 hr:Wiki id:Wiki ia:Wiki it:Wiki he:ויקי ka:ვიკი la:Vici lv:Wiki lb:Wiki lt:Wiki li:Wiki hu:Wiki ml:വിക്കി mt:Wiki ms:Wiki nl:WikiWiki ja:ウィキ no:Wiki nn:Wiki pl:Wiki pt:Wiki ro:Wiki ru:Вики sq:Wiki simple:Wiki sk:Wiki sl:Wiki sr:Вики fi:Wiki sv:Wiki ta:விக்கி tl:Wiki tt:Wiki th:วิกิ tr:Wiki uk:Вікі vi:Wiki yi:וויקי zh:Wiki



This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "Wiki".

Personal tools