Jump to content

Manual:Interwiki table

From mediawiki.org
Revision as of 04:42, 12 December 2004 by 68.225.8.211 (talk)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<- MediaWiki architecture < Database layout

The interwiki table gives us a list of all of the interwiki prefixes used.

"DESCRIBE links" confronts us with:

Field Type Null Key Default Extra
iw_prefix char(32)   PRI    
iw_url char(127)        
iw_local tinyint(1)     0  

iw_prefix is the prefix of the InterWiki link; this is used the same way as a namespace is used when editing.

iw_url is the target of the link; the page name is substituted for $1.

iw_local tells whether the page is local; it is somehow used by the redirect feature. To be perfectly honest, I have no clue how.