For information on editing module data in general, see Guidelines:Modules/Data.
Data
Types
Licenses
License | Template | Output |
---|
Copyright | Template:FileInfo/Copyright | This file depicts work from a copyrighted video game or otherwise copyrighted material. The copyright for it is most likely owned by either Nintendo and/or its affiliates or the person or organization that developed the concept. It is believed that its use here constitutes fair use, given that:
- it is used in a non-commercial setting, and therefore is not being used to generate profit in this context
- its use here does not significantly impede the right of the copyright holder to sell the copyrighted material
- it is used in a largely unaltered state, where any editing has been done purely for cosmetic/display purposes
- the original content of the image has not been modified, and it is not a derivative work
|
Fan Art | Template:FileInfo/Fan Art |
| This image is a derivative work or fan art. The copyright of the original work this image is derived from most likely belongs to either Nintendo and/or its affiliates or the person or organization that developed the concept. The author of this image may also claim to hold copyright to this derivative work. As such, with the exception of "fair use," this image cannot be used without the permission of the author. |
|
Public Domain | Template:FileInfo/Public Domain |
| This image, sound, or video is in the public domain. Copyright laws do not apply to it, or else its copyright has expired or has been renounced by the copyright holder. Public domain images sourced from constituent sites of the Wikimedia Foundation will have additional documentation available at the original source image. |
|
PD-Simple | Template:FileInfo/PD-Simple |
| This image consists only of simple geometric shapes and/or text. It is not sufficiently original to come under copyright protection, and is thus public domain.
|
|
GFDL | Template:FileInfo/GFDL |
| This file is protected by copyleft. Permission is granted to copy, distribute and/or modify it under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License." |
|
CC-BY-SA | Template:FileInfo/CC-BY-SA | |
CC-BY-NC-SA | Template:FileInfo/CC-BY-NC-SA | |
Copyright-ZW | Template:FileInfo/Copyright-ZW |
| This image is copyright © Zelda Wiki. All rights reserved. |
|
local utilsTable = require("Module:UtilsTable")
local p = {}
p.types = {
{
key = "artwork",
cat = "Artwork",
},
{
key = "icon",
cat = "Sprites",
},
{
key = "map",
cat = "Maps",
},
{
key = "merchandise",
cat = "Merchandise",
},
{
key = "model",
cat = "Models",
},
{
key = "print",
cat = "Printed Media",
},
{
key = "render",
cat = "Renders",
},
{
key = "screenshot",
cat = "Screenshots",
},
{
key = "sound",
cat = "Sounds",
},
{
key = "sprite",
cat = "Sprites",
},
{
key = "symbol",
cat = "Symbols",
},
{
key = "texture",
cat = "Textures",
},
{
key = "video",
cat = "Videos",
},
{
key = "concept artwork",
cat = "Concept Artwork",
},
{
key = "concept map",
cat = "Concept Maps",
},
{
key = "concept merchandise",
cat = "Concept Merchandise",
},
{
key = "concept model",
cat = "Concept Models",
},
{
key = "concept render",
cat = "Concept Renders",
},
{
key = "concept screenshot",
cat = "Concept Screenshots",
},
{
key = "concept sound",
cat = "Concept Sounds",
},
{
key = "concept sprite",
cat = "Concept Sprites",
},
{
key = "concept texture",
cat = "Concept Textures",
},
{
key = "concept video",
cat = "Concept Videos",
},
{
key = "flag",
cat = "Flags",
nogame = true,
},
{
key = "logo",
cat = "Logos",
},
{
key = "photo",
cat = "Photographs",
},
{
key = "signature",
cat = "Signatures",
nogame = true,
},
{
key = "user",
cat = "Personal Images",
nogame = true,
},
{
key = "wiki symbol",
cat = "Wiki Symbols",
nogame = true,
}
}
p.typesEnum = utilsTable.map(p.types, "key")
p.typesEnum.reference = "[[Module:File/Data]]"
p.typesByKey = utilsTable.keyBy(p.types, "key")
p.licenses = {
"Copyright",
"Fan Art",
"Public Domain",
"PD-Simple",
"GFDL",
"CC-BY-SA",
"CC-BY-NC-SA",
"Copyright-ZW",
}
p.licenses.reference = "[[Module:File/Data]]"
return p