On http://drupal.org/node/14205 there is a list of users who have created pages in the handbook. I think it would be more complete to know how many pages they've created and how many pages they've edited (e.g. revisions with them as the uid). The following query creates such a list of revision counts, uid, and name:

SELECT COUNT(1), nr.uid, users.name FROM node_revisions nr INNER JOIN node ON nr.nid = node.nid INNER JOIN users ON nr.uid = users.uid WHERE node.type = 'book' GROUP BY nr.uid, users.name;

I'm posting this as an issue because I'd like to update/edit that page but I'm not a php editor (and this is not an attempt to request php editor access). If someone with proper permissions can send me the php inside that node than I'd be happy to edit/update it and resubmit.

Comments

michelle’s picture

+1 from me. I keep losing track of pages I've worked on. They don't show up in my tracker unless I created the node, even if all that was there before was a simple stub. I'd love to have a list of pages that I've contributed to for my own reference, even if they don't want to make that public.

Michelle

greggles’s picture

Just to clarify (michelle and I discussed this in IRC, but that doesn't help others) this would only show the number of nodes edited, not the nid/title of them.

sepeck’s picture

Assigned: Unassigned » sepeck

assigning to me to remind me to test on scratch.

pwolanin’s picture

Note, that with a change (nominally a bug fix) to the book module, if you edit a page, you now are listed as the author in the tracker.

dokumori’s picture

Project: Documentation » Drupal core
Version: » 7.x-dev
Component: Misc » documentation

Changed the component to reflect the new component categorization. See http://drupal.org/node/301443
-dokumori

dokumori’s picture

Project: Drupal core » Documentation
Version: 7.x-dev »
Component: documentation » Other documentation issues
greggles’s picture

Status: Active » Fixed

This was implemented by chx I think based upon revisions and then moved to actual php code in drupalorg module by kbahey.

http://drupal.org/node/263594

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.