Crediting
It is very important to record code contributions in a consistent and parseable way.
This allows us to write scripts to figure out who has been actively contributing โ and what they have contributed โ so we can spot potential new committers quickly.
Code: Select all
Missing feature:Added new feature to the server.ย Patch by: @nonomTested by: @Andry_85, @malyelfikReviewed by: @UnAfraid, @Zoey76ย
Valid tags
Patch by:
Suggested by:
Reviewed by:
Reported by:
Tested by:
Thanks to:
Requested by:
They must be in an own line, no spaces befor nor after, no bracket, no points at the end nor other symbols.
The point is for this tags to be parseable so we can find potential contributors.
In case of multiple names for the same field, they are comma separated.
Crediting own work
The Java code should always include the @author tag in order to get committed.
Contributions without this tag won't be accepted
Crediting existing work
Replacing the author is only allowed when the code have written from scratch or rewritten over 75%~ of the existing code. Of course this cannot be really measured so
don't abuse from this.
Adding authorship to an existing file is possible when a feature (non-existing code) has been added or the file has been reworked (existing code), here there is not percent rule, just keep in mind typo fixes, minor bugs or any minor change doesn't count.
When reworking something, usually when we change from a legacy technology, say from static SQL tables to XML files, from Jython scripts to Java scripts, etc, if the move only represents a "translation" it must include (the new file) the original author in the JavaDoc header: First version by UnAfraid.
Is not the case when you replace existing code with new code, but this new code doesn't use the previous code as base and it has been created from scratch and is
entirely the contributor's (or contributors') work.