Wiki: Difference between revisions

The educational technology and digital learning wiki
Jump to navigation Jump to search
Line 50: Line 50:
  <nowiki>[[Category:Technologies]]</nowiki>
  <nowiki>[[Category:Technologies]]</nowiki>


=== Wiki architectures ===
=== Wiki software architectures ===


Most Wikis are implement as server-side www scripts.
Most Wikis are implemented as server-side www scripts. This includes the following components:
* a webserver
# A webserver like Apache.
* more implementations are done in PHP, but you also can find Perl, Python, Java, etc.
# Most implementations are done in PHP but some use other programming/scripting languages such as Perl, Python, Java, etc.
* most of the time, a database server like [[MySQL]].
# A database server like [[MySQL]], but some Wikis use a file-based system.


Some Wikis are embedded within larger portals, e.g. some [[LMS]] include a wiki
Therefore, a typical Wiki runs under the [[LAMP]] bundle.
 
Some Wikis are embedded within portals, e.g. some [[LMS]] include a wiki.
 
=== A simple typology ===
 
* Complex stand-alone wikis like [http://www.mediawiki.org/wiki/MediaWiki MediaWiki]
* Simple stand-alone wikis like [http://phpwiki.sourceforge.net/phpwiki/ PhPWiki]
* Portals with a wiki as major component like [http://tikiwiki.org/ TikiWiki]
* Simple wikis embedded within portals, e.g. [http://erfurtwiki.sourceforge.net/ Erfurt Wiki] is embedded in the [[Moodle]] [[LMS]]
* Simple CMS modules that have wiki-like features (but lake important wiki features such as easy page creation and linking)


== Wiki management policy ==
== Wiki management policy ==
Line 81: Line 91:
#Wiki as university (see [http://en.wikibooks.org/wiki/Wikiversity WikiVersity] and the [http://meta.wikimedia.org/wiki/Wikiversity/Modified_project_proposal Wikiversity/Modified proposal].
#Wiki as university (see [http://en.wikibooks.org/wiki/Wikiversity WikiVersity] and the [http://meta.wikimedia.org/wiki/Wikiversity/Modified_project_proposal Wikiversity/Modified proposal].


== Wiki software and installation ==
== Wiki software ==
 
Most Wiki installations require some system administration skills. Usually a Wiki runs as a web-based Internet service.


=== Installation ===
=== Complex Standalone Wikis ===


Most Wiki installations require some system administration skills. Usually a Wiki runs as a web-based Internet service and you therefore need to have the following components already installed:
* [http://www.mediawiki.org/wiki/MediaWiki MediaWiki]
* a webserver
* [http://tikiwiki.org/ TikiWiki]
* some scripting language, e.g. PHP
* most of the time, a database server like [[MySQL]].


=== Open Source Software ===
=== Simple wikis ===


#[http://www.mediawiki.org/wiki/MediaWiki MediaWiki]
#[http://www.splitbrain.org/Programming/PHP/DokuWiki/index.php Doku]
#[http://wikka.jsnx.com/WakkaWiki WakkaWiki]
#[http://wikka.jsnx.com/WakkaWiki WakkaWiki]
#[http://wikkawiki.org/HomePage Wikka Wiki]], a derived version will soon be available as [http://community.postnuke.com/module-Database-viewpub-tid-3-pid-3.htm pnWikka PostNuke] module.  (DKS - 20:41, 12 June 2006 (MEST))
#[http://www.wikini.net/wakka.php?wiki=PagePrincipale Wikini]
#[http://www.wikini.net/wakka.php?wiki=PagePrincipale Wikini]
=== Simple file-based wikis ===
#[http://www.splitbrain.org/Programming/PHP/DokuWiki/index.php Doku Wiki]
=== Indexes ===


You can find more wikiware on:
You can find more wikiware on:

Revision as of 20:41, 12 June 2006

This article or section is currently under construction

In principle, someone is working on it and there should be a better version in a not so distant future.
If you want to modify this page, please discuss it with the person working on it (see the "history")

Definition

A wiki is a powerful collaborative tool that allows users to add and edit content on-line. User can also easily create new pages. If necessary it's possible to add some permissions to the pages (lock pages or only identified users can modify the content of a page).

Definition from the Wikipedia:Wiki:

A wiki is a type of website that allows users to easily add, remove, or otherwise 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 can also refer to the collaborative software itself (wiki engine) that facilitates the operation of such a website (see wiki software), or to certain specific wiki sites, including the computer science site (and original wiki), WikiWikiWeb, and the online encyclopedia Wikipedia. When used to refer to a specific site, wiki is often capitalized.

The word wiki is a shorter form of wiki wiki (weekie, weekie) 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). In English, it is an adverb meaning "quickly" or "fast".
  • Explanation by example: This website is powered by a wiki. If you want, you can modify this page, changing words or sentences.

What is a wiki ?

Technical features from a user perspective

Collaborative online editing

  • A wiki enables documents to be written collectively in a very simple markup language using a web browser.

A simple editing syntax

  • Editing content on a wiki is usually very simple, users have to learn a small syntax. However, some wikis like this one use an increasingly complex syntax, e.g. for this mediawiki see How to edit a page). Even though, users still have the option to work with a very small subset, as demonstrated in the Wikipedia Chatsheet.
  • In addition, most mediawiki-based sites use a sometimes huge library of templates. E.g. this wiki has only few, lots !
  • There is no standard Wiki syntax. Each Wiki Software has its own, although some types of Wikis are very close. Some isolated Wikis even use HTML instead of the traditional Wiki Syntax or allow combination of HTML codes with wiki coding. WYSIWYG through the web editors (TTW) also start becoming popular.

Page History

  • Usually either all edits are kept in history and users can undo changes or compare changes.

Wikis as hypertext system

  • Wikis are one a few true hypertext systems still alive on the Web and this explains also part of their success.
  • It is very easy to link from one page to another. Originally, most Wikis used a [:Wikimedia:CamelCase | CamelCase] linking mechanism, but this syntax makes reading more difficult and certainly deviates from standard spelling. Therefore, most Wikis use a syntax like
[[Hypertext]]  which will show Hypertext

or if users want to replace the title's page by some else something like:

[[Hypertext | Article about hypertext]] which will show Article about hypertext.
  • Some Wikis add other navigational features, e.g. a search facility or categories. In this wiki:
    • You can search either titles or full text ("Go" or "search" button) in the box to the left
    • You can add an article to a category, in order to add this article to the technologies category, we used the command:
[[Category:Technologies]]

Wiki software architectures

Most Wikis are implemented as server-side www scripts. This includes the following components:

  1. A webserver like Apache.
  2. Most implementations are done in PHP but some use other programming/scripting languages such as Perl, Python, Java, etc.
  3. A database server like MySQL, but some Wikis use a file-based system.

Therefore, a typical Wiki runs under the LAMP bundle.

Some Wikis are embedded within portals, e.g. some LMS include a wiki.

A simple typology

  • Complex stand-alone wikis like MediaWiki
  • Simple stand-alone wikis like PhPWiki
  • Portals with a wiki as major component like TikiWiki
  • Simple wikis embedded within portals, e.g. Erfurt Wiki is embedded in the Moodle LMS
  • Simple CMS modules that have wiki-like features (but lake important wiki features such as easy page creation and linking)

Wiki management policy

  • Generally, most sites require that some editing rules for style and content organization are respected. The goal of these rules are to standardize organization of contents within a page or throughout the wiki, in order to make both knowledge retrieval and production easier.
  • Frequently, Wikis also adopt guidlines for co-editing. Wiki administrators have to pay attention to both new new users having sometimes difficulties to adapt to the wiki paradigm (everybody can do what they want respecting other's work) and persons that do not easily fit into a local "spirit".
  • There is an increasing problem with vandalism and therefore many Wikis require at least a login to edit. Educational wikis now tend to exclude external users from editing, since there is a lack of manpower to survey pages.

Educational usage

  1. wiki as tool for inquiry-based learning designs (e.g. Lombard)
  2. wiki as a collaborative content management system.
  3. wiki for collaborative writing (see collaborative learning, writing-to-learn, CSCL, inquiry-based learning, ABAHCOCOSUCOL)
  4. wiki as a resource repository
  5. wiki as a project/class management tool (see project-based learning)
  6. wiki as a website
  7. wiki as hypertexts (see cognitive flexibility theory)
  8. Wiki as university (see WikiVersity and the Wikiversity/Modified proposal.

Wiki software

Most Wiki installations require some system administration skills. Usually a Wiki runs as a web-based Internet service.

Complex Standalone Wikis

Simple wikis

  1. WakkaWiki
  2. Wikka Wiki], a derived version will soon be available as pnWikka PostNuke module. (DKS - 20:41, 12 June 2006 (MEST))
  3. Wikini

Simple file-based wikis

  1. Doku Wiki


Indexes

You can find more wikiware on:

  1. Wiki Engine
  2. Wiki Engines

Articles and Books