Dirk-Willem van Gulik wrote: > > [EMAIL PROTECTED] wrote: > > > We do have a 'contributors' file, but I assume its reserved for more > > significant (sizewise I mean, any bug fix is significant in terms of > > usefulness :-) contributions. > > The 'Changes' file in the httpd project has short and to the point > entries like: > > *) Add an explicit charset=iso-8859-1 to pages generated by > ap_send_error_response(), such as the default 404 page. > [Marc Slemko] > > *) Added protocol(%m)/method(%H) logging to the log format. > Suggested by Peter W <[EMAIL PROTECTED]> [dirkx] > > *) Fix intermittent SEGV in ap_proxy_cache_error() in > src/modules/proxy_util.c where a NULL filepointer and > temporary filename were closed and unlinked. > [Graham Leggett <[EMAIL PROTECTED]>, > Tim Costello <[EMAIL PROTECTED]>] PR#3178 > > or whatever. I.e. who suggested it where appropriate, and > who actually commited it (and should get part of the blame) > or either of the two. Or a ptr to a bug #. > > This is a good compromize I guess.
You might want to consider the Changes DTD we use in Cocoon to keep track of contributions: here is an example of usage of our DTD. <changes title="History of Changes"> <devs> <person name="Bill Gates" email="[EMAIL PROTECTED]" id="BG"/> ... </devs> <release version="52.3.4" date="to be determined"> <action dev="BG" type="add" due-to="John Smith" due-to-email="[EMAIL PROTECTED]"> Added something but I don't know what it does. </action> </release> ... </changes> then this is transformed into HTML and placed on the web site for reference. We should have something like this for every xml.apache project. Stefano.