Extension:NewArticleTemplates

From MediaWiki.org

Jump to: navigation, search

               

Manual on MediaWiki Extensions
List of MediaWiki Extensions
Crystal Clear action run.png
NewArticleTemplates

Release status: stable

Implementation  User interface
Description Prefills newly created pages with some text.
Author(s)  MatiTalk
Last Version  1.1 (2008-02-06)
MediaWiki  1.9.x or later
License GPL 3.0 or later.
Download SourceCode in SVN
Documentation
Changelog
Example  see below

check usage (experimental)

NewArticleTemplates is an Extension that allows you to automatically prefill text of new pages with the contents of other predefined wiki-pages. It is possible to distinguish between namespaces and specify a different text for new subpages.

Contents

[edit] Download

The most recent version of this extension can always be found in the NewArticleTemplate-directory of our SVN-repository. Older versions and versions for older MediaWikis may be found in the tags-directory. Please see the repository-readme on how directories are used in the repository.

[edit] Installation & Configuration

The extension is probably more configurable than it needs to be. It is recommended that you use pages in the MediaWiki namespace for the templates, otherwise the templates are editable by everyone, which is probably not what you want. Here is a (hopefully) self-explanatory snippet of LocalSettings.php:

require_once ("$IP/extensions/NewArticleTemplate/NewArticleTemplate.php");
$wgNewArticleTemplatesEnable = true;
 
# enable on subpages:
$wgNewArticleTemplatesOnSubpages = true;
 
# Templates are used in these namespaces:
$wgNewArticleTemplatesNamespaces = array(
        NS_MAIN                 => 1,
        100                     => 1,
        102                     => 1,
        104                     => 1,
        106                     => 1
);
 
# new pages in the main namespace use MediaWiki:NewArticleTemplate:
$wgNewArticleTemplates_PerNamespace = array(
        NS_MAIN                 => "MediaWiki:NewArticleTemplate",
);
 
# new pages in any other namespace defined by $wgNewArticleTemplatesNamespaces use MediaWiki:NewArticleTemplateDefault:
$wgNewArticleTemplatesDefault = "MediaWiki:NewArticleTemplateDefault";
[edit] Handling of subpages

The handling of subpages is somewhat special:

  1. A page containing a slash ('/') is only considered a subpage if the part before the first slash represents an existing article
  2. If $wgNewArticleTemplatesOnSubpages is set to true, the extensions checks for the existence of a page with the suffix "/Subpage" to the normal title of the template-page and uses it instead, if it exists.
    In the above example, a new article in the main namespace would be prefilled with MediaWiki:NewArticleTemplate, but if the new page is a subpage of an existing page, MediaWiki:NewArticleTemplate/Subpage would be used instead, if it exists.
[edit] Categories in the templates

Note that MediaWikis includeonly- and noinclude-tags are also supported in the MediaWiki-namespace.

[edit] Example

http://vowi.fsinf.at/ has the extension installed. Try creating a new page in the main namespace, the "TU Wien"-namespace and the a new subpage of a "TU Wien"-page (all pages in TU Wien).

[edit] Changelog

[edit] 1.1 (rev. 187)
  • fixed a typo in the global imports
  • much refined handling of subpages
  • if the new page is a subpage and a subpage of the template named 'Subpage' exists, it is used instead
[edit] 1.0
  • first version documented here

[edit] Licence

GPL 3.0 or later.

[edit] See Also

Perhaps Extension:Preloader, Extension:PreloadManager, Extension:NewArticleTemplates and Extension:Boilerplate should be merged?