No edit summary
made page better
Line 1: Line 1:
Project cargo-complete
Page title:Project cargo-complete


concept for this project is making sure that all cargo tables which are present on the wiki have all the appropriate metadata in them


use cargo query to make the table, which people can browse and sort to look for incomplete things they can go and fill in.
Cargo tables are used on the Consumer Rights Wiki for storing structured metadata about articles
===Project goals===
The purpose of project Cargo-Complete is to ensure that every Cargo able on the wiki contains all the information that it should, and that every relevant page has a Cargo table. This page contains tables which fetch all of the articles with each kind of Cargo table present on them, and by checking over these tables, you should be able to identify empty or incomplete.
 
The pages which should have a Cargo table include:
*Pages about specific incidents (template)
*Pages about specific companies (template)
*Pages about specific products or services (template)
*Pages about specific product lines (template)
 
It is quite likely that pages will exist on the wiki that should have a Cargo table, but do not have one.
 
A good number of pages which should have cargo tables, but do not, use the deprecated InfoboxCompany template. A list of such articles can be found here: https://consumerrights.wiki/w/Special:WhatLinksHere/Template:InfoboxCompany
 
This project will be considered complete when all relevant pages contain Cargo tables, and all Cargo tables have their full complement of data.
 
==Incidents==


{{#cargo_query:
{{#cargo_query:
Line 11: Line 26:
|format=table
|format=table
|class=wikitable sortable
|class=wikitable sortable
|limit=500
|limit=1000
}}
==Companies==
{{#cargo_query:
|tables=Company
|fields=_pageName=Page, Type, Industry, Founded, ParentCompany=Parent Company, Website, Description
|order by=_pageName
|format=table
|class=wikitable sortable
|limit=1000
}}
 
==Products==
{{#cargo_query:
|tables=Product
|fields=_pageName=Page, Company, ProductLine=Product Line, Category, ArticleType=Article Type, ReleaseYear=Release Year, InProduction=In Production, Description
|order by=_pageName
|format=table
|class=wikitable sortable
|limit=1000
}}
 
==Product lines==
{{#cargo_query:
|tables=ProductLine
|fields=_pageName=Page, Company, Category, ArticleType=Article Type, ReleaseYear=Release Year, InProduction=In Production, Description
|order by=_pageName
|format=table
|class=wikitable sortable
|limit=1000
}}
}}