##// END OF EJS Templates
scripts: prepare for giving credit for contributions that have been integrated into other changesets
Mads Kiilerich -
r7661:a44228cd default
parent child Browse files
Show More
@@ -62,6 +62,12 b" no_about.add(('Ton Plomp <tcplomp@gmail."
62 # Was reworked and contributed later and shadowed by other contributions:
62 # Was reworked and contributed later and shadowed by other contributions:
63 no_about.add(('Sean Farley <sean.michael.farley@gmail.com>', '2013'))
63 no_about.add(('Sean Farley <sean.michael.farley@gmail.com>', '2013'))
64
64
65 # Contributors in about.html and CONTRIBUTORS not appearing in repository
66 # history:
67 other = [
68 # Work folded into commits attributed to others:
69 ]
70
65 # Preserve contributors listed in about.html but not appearing in repository
71 # Preserve contributors listed in about.html but not appearing in repository
66 # history:
72 # history:
67 other_about = [
73 other_about = [
@@ -127,7 +127,7 b' def main():'
127
127
128 insert_entries(
128 insert_entries(
129 filename='kallithea/templates/about.html',
129 filename='kallithea/templates/about.html',
130 all_entries=repo_entries + contributor_data.other_about,
130 all_entries=repo_entries + contributor_data.other_about + contributor_data.other,
131 no_entries=contributor_data.no_about,
131 no_entries=contributor_data.no_about,
132 domain_extra=contributor_data.domain_extra,
132 domain_extra=contributor_data.domain_extra,
133 split_re=r'(?: <li>Copyright &copy; [^\n]*</li>\n)*',
133 split_re=r'(?: <li>Copyright &copy; [^\n]*</li>\n)*',
@@ -137,7 +137,7 b' def main():'
137
137
138 insert_entries(
138 insert_entries(
139 filename='CONTRIBUTORS',
139 filename='CONTRIBUTORS',
140 all_entries=repo_entries + contributor_data.other_contributors,
140 all_entries=repo_entries + contributor_data.other_contributors + contributor_data.other,
141 no_entries=contributor_data.total_ignore,
141 no_entries=contributor_data.total_ignore,
142 domain_extra=contributor_data.domain_extra,
142 domain_extra=contributor_data.domain_extra,
143 split_re=r'(?: [^\n]*\n)*',
143 split_re=r'(?: [^\n]*\n)*',
General Comments 0
You need to be logged in to leave comments. Login now