X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=lib%2Fgenerate_contributions.py;h=90be99c9f7d4069a2445e378cd44fcb552b31dca;hb=ff0d96c3719bc46b1f61a0e858a1dae039cc8f0c;hp=80d9f292057709871414e2fc75ecdb23ab8dfd4e;hpb=4ecbabf5f9211155b94d1d0744b3f7fad17209d3;p=lyx.git diff --git a/lib/generate_contributions.py b/lib/generate_contributions.py index 80d9f29205..90be99c9f7 100755 --- a/lib/generate_contributions.py +++ b/lib/generate_contributions.py @@ -296,19 +296,31 @@ def main(argv, contributors): if len(argv) != 4: error(usage(argv[0])) - txt_credits_data = unicode(as_txt_credits(contributors)).encode("utf-8") + if sys.version_info[0] < 3: + txt_credits_data = unicode(as_txt_credits(contributors)).encode("utf-8") + else: + txt_credits_data = str(as_txt_credits(contributors)).encode("utf-8") txt_credits = open(argv[1], "w") txt_credits.write(txt_credits_data) - php_credits_data = unicode(as_php_credits(contributors, argv[2])).encode("utf-8") + if sys.version_info[0] < 3: + php_credits_data = unicode(as_php_credits(contributors, argv[2])).encode("utf-8") + else: + php_credits_data = str(as_php_credits(contributors, argv[2])).encode("utf-8") php_credits = open(argv[2], "w") php_credits.write(php_credits_data) - php_blanket_data = unicode(as_php_blanket(contributors, argv[3])).encode("utf-8") + if sys.version_info[0] < 3: + php_blanket_data = unicode(as_php_blanket(contributors, argv[3])).encode("utf-8") + else: + php_blanket_data = str(as_php_blanket(contributors, argv[3])).encode("utf-8") php_blanket = open(argv[3], "w") php_blanket.write(php_blanket_data) - warning_data = unicode(collate_incomplete(contributors) + '\n').encode("utf-8") + if sys.version_info[0] < 3: + warning_data = unicode(collate_incomplete(contributors) + '\n').encode("utf-8") + else: + warning_data = str(collate_incomplete(contributors) + '\n').encode("utf-8") sys.stderr.write(warning_data) @@ -499,6 +511,14 @@ contributors = [ "24 February 2005", u"A (pseudo) threaded graphics loader queue, lots of fixes, etc."), + contributor(u"Martin A. Brown", + "martin () linux-ip ! net", + "GPL", + "Re: public identifier for DocBook XML export", + "m=148391461928571", + "8 January 2017", + u"Docbook fixes"), + contributor(u"Christian Buescher", "christian.buescher () uni-bielefeld ! de", "", @@ -771,6 +791,14 @@ contributors = [ "28 February 2005", u"Improvements to lyxserver"), + contributor(u"Shankar Giri Venkita Giri", + "girivs () gmx ! com", + "GPL", + "Blanket permission", + "m=146162343015182", + "25 April 2016", + u"Mingw-w64 build fixes"), + contributor(u"Hartmut Goebel", "h.goebel () crazy-compilers ! com", "GPL", @@ -819,6 +847,22 @@ contributors = [ "23 February 2005", u"Norwegian documentation and localization"), + contributor(u"Jessica Hamilton", + "jessica.l.hamilton () gmail ! com", + "GPL", + "Contributor License", + "m=143381137411598", + "9 June 2015", + u"Haiku OS support"), + + contributor(u"Jan Niklas Hasse", + "jhasse () bixense ! com", + "GPL", + "Re: Patch to make it possible to open empty files", + "m=148163124122780", + "23 December 2016", + u"File opening enhancement"), + contributor(u"Richard Heck", "rgheck () comcast ! net", "GPL", @@ -875,6 +919,14 @@ contributors = [ "6 October 2013", u"Dialog usability fix"), + contributor(u"John Hudson", + "j.r.hudson () virginmedia ! com", + "GPL", + "Contributions", + "m=146722333213915", + "29 June 2016", + u"Documentation updates"), + contributor(u"Bernard Hurley", "bernard () fong-hurley ! org ! uk", "GPL", @@ -996,7 +1048,7 @@ contributors = [ u"Italian localization of the interface"), contributor(u"Scott Kostyshak", - "skostysh@princeton.edu", + "skostysh () princeton ! edu", "GPL", "GPL Statement", "m=133076234031944", @@ -1051,6 +1103,14 @@ contributors = [ "25 February 2005", u"Initial version of the koma-script textclasses"), + contributor(u"Joel Kulesza", + "jkulesza () gmail ! com>", + "GPL", + "License to Publish Work", + "m=147735429207382", + "25 October 2016", + u"User interface improvements"), + contributor(u"Felix Kurth", "felix () fkurth ! de", "GPL", @@ -1243,6 +1303,14 @@ contributors = [ "20 October 2014", u"New lfun server-get-statistics"), + contributor(u"Guillaume Munch", + "gm () lyx ! org", + "GPL", + "Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)", + "m=143890980923229", + "07 August 2015", + u"Several bug fixes, mainly mathed"), + contributor(u"Iñaki Larrañaga Murgoitio", "dooteo () euskalgnu ! org", "GPL", @@ -1339,6 +1407,14 @@ contributors = [ "9 March 2014", u"Korean translation"), + contributor(u'Andrew Parsloe', + "aparsloe () clear ! net ! nz", + "GPL", + "GPL declaration", + "m=147941540519608", + "17 November 2016", + u"Module updates"), + contributor(u'Bo Peng', "ben.bob () gmail ! com", "GPL", @@ -1442,7 +1518,7 @@ contributors = [ "m=110905169512662", "21 February 2005", u"GUI-I architect, LyX PR head, LDN, bug reports/fixes, Itemize Bullet Selection, xforms-0.81 + gcc-2.6.3 compatibility"), - + contributor(u"Manoj Rajagopalan", "rmanoj () umich ! edu", "GPL", @@ -1450,7 +1526,15 @@ contributors = [ "m=123506398801004", "Feb 19 2009", u"reference dialog tweaks"), - + + contributor(u"Daniel Ramöller", + "d.lyx () web ! de", + "GPL", + "Permission", + "m=147578627921242", + "Oct 6 2016", + u"UI improvements"), + contributor(u"Vincent van Ravesteijn", "V.F.vanRavesteijn () tudelft ! nl", "GPL", @@ -1555,6 +1639,14 @@ contributors = [ "25 September 2007", u"Major rework of the AMS classes"), + contributor(u"Dima Ruinskiy", + "dima.ruinskiy () outlook ! com", + "GPL", + "Joining LyX development team", + "m=146687842921797", + "24 June 2016", + u"Reintroduction of Windows Vista support (bug 10186)"), + contributor(u"Guy Rutenberg", "guyrutenberg () gmail ! com", "GPL",