Sjabloon:Purge

Uit informatiestandaarden
Versie door Ahenket (overleg | bijdragen) op 21 jul 2013 om 08:09 (1 versie: Van wikipedia)
Ga naar: navigatie, zoeken

Purge

[bewerken] [purge] Template documentation

{{Purge}} produces a link that will clear the cache and rebuild page from the wikitext.

Purpose

For efficiency in service, MediaWiki caches pages. Depending on the exact sequence of actions editors follow, one may view an out-of-date version of a given page. This happens most often on heavily-edited pages and on pages which contain an instance of transclusion.

{{Purge}} adds to any page a link that, when clicked, not only reloads the page, but clears the server cache, forcing the page to be completely rendered "from scratch". This is not a one-time solution; generally, editing a page is itself sufficient to purge cache. Rather, it is a measure taken in anticipation of the frequent need to purge.

Examples

Code Yields Result
{{Purge}} Purge Creates a purge link for the page it is used on.
{{Purge|Purge this page's server cache.}} Purge this page's server cache. Creates a purge link for the page it is used on, but with the text "Purge this page's server cache."
{{Purge|page=Hoofdpagina}} Purge Creates a purge link for Hoofdpagina.
{{Purge|Purge this page's server cache.|page=Hoofdpagina}} Purge this page's server cache. Creates a purge link for Hoofdpagina, but with the text "Purge this page's server cache."

When you are linking to a section, purging that page will cause you to lose the section link.

TemplateData

<templatedata> {

       "description": "A template that produces a link that will clear the cache and rebuild page from the wikitext",
       "params": {
               "1": {
                       "label": "Label",
                       "description": "The label of the purge link",
                       "type": "string",
                       "default": "Purge",
                       "required": false
               },
               "page": {
                       "label": "Page",
                       "description": "The page to purge",
                       "type": "string/wiki-page-name",
                       "required": false
               }
       }

} </templatedata>

See also