Page MenuHomePhabricator

TemplateData: Generate and display to users frequency metrics on incomplete template data
Open, MediumPublicFeature

Description

would also be nice if the system were to gather (queryable) data for which templates have been seen (and with what frequency) in the VE template dialog where such templates lacked TemplateData.

  • John Broughton

Version: unspecified
Severity: enhancement

Details

Reference
bz69866

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 22 2014, 3:33 AM
bzimport added a project: TemplateData.
bzimport set Reference to bz69866.

Possible query for getting the most important templates missing template data:

select * from templatelinks where tl_from_namespace=10 and not exists(select * from page inner join page_props on pp_page=page_id where page_title=tl_title and pp_propname='templatedata' and page_namespace=10) group by tl_title order by count(*) desc limit 50;

(warning - it is expensive...)

Aklapper changed the subtype of this task from "Task" to "Feature Request".Feb 4 2022, 12:23 PM
Aklapper removed subscribers: rmoen, TrevorParscal.