Aiuto:ChangeContentModel
| Nota: Quando modifichi questa pagina, acconsenti a pubblicare il tuo contributo con licenza CC0. Vedi pagine di aiuto di dominio pubblico per maggiori informazioni. |
| Modelli di Contenuto e la loro gestione. |
|---|
| MediaWiki permette altri tipi di contenuto nelle pagine oltre al Wikitexsto. Offre anche supporto integrato per JavaScript, CSS, JSON e testo semplice. Le estensioni possono usare il ContentHandler di MediaWiki per aggiungere nuovi modelli di contenuto per supportare formati diversi e controllare come sono resi, memorizzati e modificati. |
|
Circa il ContentHandler Gestori di contenuto e la loro implementazione |
|
Cambiare il modello di contenuto di una pagina Cambiare il modello di contenuto di un namespace Estensioni che utilizzano ContentHandler Aggiungere modelli di contenuto con un estensione Esempi: |
|
$wgContentHandlers $wgNamespaceContentModels |
| Supporto e sviluppo |
|
|

La pagina Special:ChangeContentModel può essere usata per cambiare il "modello di contenuto" di una pagina.
Un modello di contenuto, molto brevemente, è il formato o il tipo di una determinata pagina su una wiki.
Di default il modello di contenuto di una pagina è il Wikitesto, un formato di testo formattato che fa uso del markup wiki.
Content models used on Wikimedia projects include css and javascript for storing code, wikibase-item for entries on Wikidata, and Campaign on Wikimedia Commons for upload campaigns such as Wiki Loves Monuments.
The default content models are "CSS" and "JavaScript" for user namespace pages whose titles end with .css and .js respectively, and with Extension:TemplateStyles installed, it is "Sanitised CSS" in the template name space.
A list of content models is available at content handlers.
More technical information is available at Manual:ContentHandler.
All actions are logged to Special:Log/contentmodel, with a convenient ripristina link to undo changes if necessary.
Users must have the editcontentmodel permission to be able to change content models.
On Wikimedia projects this permission is granted via user groups: to sysops, interface editors and - on some projects - template editors.
Background
Traditionally, the only types of pages you could create on MediaWiki were wikitext pages: rich text documents written in wikitext markup. This is acceptable for writing encyclopedia entries on Wikipedia, but falls short for content of other types, such as blocks of source code, structured data content, or complex workflows.
With the advent of the Wikidata project (and the Wikibase extension) in 2012, the ContentHandler branch was developed to allow the creation of pages other than wikitext documents. As of MediaWiki 1.21, ContentHandler is a part of the core MediaWiki software.
Some generic content models include those meant for storing and presenting source code, but they can also be used to create customised editing interfaces. For example, instead of using a horrible mess of templates to structure content on a page, you could store the underlying data in a structured format such as JSON and then write a MediaWiki extension that builds a custom editing interface on top of this structured data. This approach is used by MassMessage to create delivery list pages and by CollaborationKit for creating WikiProjects. Although these extensions have their own workflows for creating pages, Special:ChangeContentModel can also be used.
As an alternative to setting content models on a page-by-page basis, you can specify alternative defaults for a given namespace. For example, the default content model in the Module namespace is ScribuntoContent. Similarly, you can enforce that a given content model is only used in a given namespace; ScribuntoContent can only be used in the Module namespace.
Viewing a page's current content model
To view a page's current content model, click Informazioni pagina in the sidebar toolbox.
You can also append ?action=info to a URL to get the same page.
Cambiare il modello di contenuto di una pagina
Vai a Special:ChangeContentModel (o segui il link «cambia» nella pagina "Informazioni della pagina"), metti il nome della pagina che desideri cambiare.
This can be a non-existent page if you wish to create a new page that uses a different content model from the default.
Next, choose the content model you wish to change to.
Clicca "Modifica" per effettuare la modifica.
Note that not all conversions are possible.
If you are trying to convert a page that already exists and the MediaWiki software cannot figure out how to re-interpret the current page's content, the content model will not be converted and you will get an error message.
When this happens, it is recommended that you archive the old page and create the page anew in the new content model.
For instance, you could rename Project:Foo to Project:Foo/old and then use Special:ChangeContentModel to create a new page at Project:Foo.
If possible, you should include a link to Project:Foo/old on the new page.
Undoing a change
All content model changes are logged at Special:Log/contentmodel on your wiki.
To undo a change, go to the relevant entry in the log and click ripristina.
You will see a pre-filled form; click Modifica to carry out the revert.
If you are viewing the page history and the most recent change was the one that changed the content model, you can use the undo feature to change the content model back.
Rollback will also undo any content model changes.
Note that this may not always work, particularly if the page was edited after the content model was changed in such a way to make it incompatible with the old content model. When this happens, you will have to undo the edits that made it incompatible. Alternatively, you could carry out the content model change anew and archive the old content. Ideally, content model changes are few and far between. In most situations, a page will not have to change content model more than once.