From 0e002d195a18a3c1ee57605cc0783298106fe060 Mon Sep 17 00:00:00 2001 From: Ulrich Müller Date: Sat, 18 Jan 2020 18:18:23 +0100 Subject: appendices/contributors: Update list of contributors. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add contributors when they have added at least 40 lines (yes, this is quite arbitrary) to a file, based on the script below. This was followed by some manual sanity checks, e.g., whether the line count doesn't originate only from paragraph reformatting. for i in $(find . -name .git -prune -o -type f -print); do echo $i git blame -e -w $i done \ | awk ' /^\./ { file=$1; next } { lines[gensub(/.*\(<([^@]*)@.*/, "\\1", 1, $0), file]++ } END { for (x in lines) { split(x, y, SUBSEP) if (lines[x] >= 40) printf "%-15s %-50s %4d\n", y[1], y[2], lines[x] } }' \ | sort Where contributions to more than three (or to all) subdocuments of any document would have been listed, only the parent document is listed instead. - Remove zhen as contributor for appendices/devbook-guide, because all nontrivial lines written by him have been removed (or moved elsewhere), most of them already in 2003: https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo/xml/htdocs/doc/en/xml-guide.xml?r1=1.19&r2=1.20 - Change description of halcy0n from "current maintainer" to "previous maintainer", because his last commit was in 2010. Closes: https://bugs.gentoo.org/705744 Signed-off-by: Ulrich Müller --- appendices/contributors/text.xml | 53 ++++++++++++++++++++++++++++++++++------ 1 file changed, 45 insertions(+), 8 deletions(-) diff --git a/appendices/contributors/text.xml b/appendices/contributors/text.xml index bf0a12d..628346d 100644 --- a/appendices/contributors/text.xml +++ b/appendices/contributors/text.xml @@ -45,6 +45,8 @@ This page lists the contributions to the Gentoo Development Guide: + @@ -52,7 +54,7 @@ This page lists the contributions to the Gentoo Development Guide: Previous maintainer (XSL Stylesheets, legacy Developer Handbook content) - XSL Stylesheets, current maintainer + XSL Stylesheets, previous maintainer , @@ -61,11 +63,13 @@ This page lists the contributions to the Gentoo Development Guide: Misc - , - , - , + , , - + , + , + , + , + DTD, XSL stylesheet, eclass conversion @@ -82,10 +86,43 @@ Misc GuideXML guide - - GuideXML guide + + + + + , + + + + + + + , + , + , + , + , + search functionality + + + , + + + + , + , + , + , + + + + , + , + + + + Search functionality - -- cgit v1.2.3-65-gdbad