Changeset - a44228cd208b
[Not reviewed]
default
0 2 0
Mads Kiilerich - 6 years ago 2019-07-19 01:00:11
mads@kiilerich.com
Grafted from: c4c3edb97ca9
scripts: prepare for giving credit for contributions that have been integrated into other changesets
2 files changed with 8 insertions and 2 deletions:
0 comments (0 inline, 0 general)
scripts/contributor_data.py
Show inline comments
 
@@ -62,6 +62,12 @@ no_about.add(('Ton Plomp <tcplomp@gmail.
 
# Was reworked and contributed later and shadowed by other contributions:
 
no_about.add(('Sean Farley <sean.michael.farley@gmail.com>', '2013'))
 

	
 
# Contributors in about.html and CONTRIBUTORS not appearing in repository
 
# history:
 
other = [
 
    # Work folded into commits attributed to others:
 
]
 

	
 
# Preserve contributors listed in about.html but not appearing in repository
 
# history:
 
other_about = [
scripts/update-copyrights.py
Show inline comments
 
@@ -127,7 +127,7 @@ def main():
 

	
 
    insert_entries(
 
        filename='kallithea/templates/about.html',
 
        all_entries=repo_entries + contributor_data.other_about,
 
        all_entries=repo_entries + contributor_data.other_about + contributor_data.other,
 
        no_entries=contributor_data.no_about,
 
        domain_extra=contributor_data.domain_extra,
 
        split_re=r'(?:  <li>Copyright &copy; [^\n]*</li>\n)*',
 
@@ -137,7 +137,7 @@ def main():
 

	
 
    insert_entries(
 
        filename='CONTRIBUTORS',
 
        all_entries=repo_entries + contributor_data.other_contributors,
 
        all_entries=repo_entries + contributor_data.other_contributors + contributor_data.other,
 
        no_entries=contributor_data.total_ignore,
 
        domain_extra=contributor_data.domain_extra,
 
        split_re=r'(?:    [^\n]*\n)*',
0 comments (0 inline, 0 general)