From: Ævar Arnfjörð Bjarmason Date: Tue, 12 Apr 2005 02:18:57 +0000 (+0000) Subject: * Changed Wikipedia to MediaWiki. X-Git-Tag: 1.5.0alpha1~292 X-Git-Url: http://git.cyclocoop.org/%7B%7B%20url_for%28%27admin_vote_del%27%2C%20idvote=vote.voteid%29%20%7D%7D?a=commitdiff_plain;h=813fd1db1aa9753e98ca32398bc1433a1acca088;p=lhc%2Fweb%2Fwiklou.git * Changed Wikipedia to MediaWiki. --- diff --git a/docs/design.txt b/docs/design.txt index 8adff443f0..2b0bf4cb32 100644 --- a/docs/design.txt +++ b/docs/design.txt @@ -43,8 +43,8 @@ Primary source files/objects: Article Encapsulates access to the "cur" table of the database. The - object represents a Wikipedia article, and maintains state - such as text (in Wikitext format), flags, etc. + object represents a an article, and maintains state such as + text (in Wikitext format), flags, etc. Skin Encapsulates a "look and feel" for the wiki. All of the @@ -125,4 +125,4 @@ Naming/coding conventions: https://www.cvshome.org/docs/manual/cvs-1.11.18/cvs_5.html#SEC64). - \ No newline at end of file + diff --git a/docs/schema.txt b/docs/schema.txt index e915dc2d31..cec9caa6f4 100644 --- a/docs/schema.txt +++ b/docs/schema.txt @@ -5,7 +5,7 @@ should always be "tables.sql" in the maintenance directory, which is called from the installation script. Here are a few highlights that may be out of date: -user (Wikipedia users) +user (MediaWiki users) user_id integer, primary key, autoincrement @@ -31,7 +31,7 @@ user (Wikipedia users) -cur (Wikipedia "current" articles) +cur (MediaWiki "current" articles) cur_id integer, primary key, autoincrement diff --git a/docs/title.txt b/docs/title.txt index 1ae445601d..c86baa9efd 100644 --- a/docs/title.txt +++ b/docs/title.txt @@ -1,6 +1,6 @@ TITLE.DOC -The Wikipedia software's "Title" class represents article +The MediaWiki software's "Title" class represents article titles, which are used for many purposes: as the human-readable text title of the article, in the URL used to access the article, the wikitext link to the article, the key into the article diff --git a/docs/user.txt b/docs/user.txt index ec3949f08e..9278892349 100644 --- a/docs/user.txt +++ b/docs/user.txt @@ -1,7 +1,7 @@ USER.DOC -Documenting the Wikipedia User object. +Documenting the MediaWiki User object. (DISCLAIMER: The documentation is not guaranteed to be in sync with the code at all times. If in doubt, check the table definitions diff --git a/includes/Article.php b/includes/Article.php index bc421b8f90..3b98ca6a23 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -14,7 +14,7 @@ $wgArticleCurContentFields = false; $wgArticleOldContentFields = false; /** - * Class representing a Wikipedia article and history. + * Class representing a MediaWiki article and history. * * See design.txt for an overview. * Note: edit user interface and cache support functions have been