]> git.lyx.org Git - lyx.git/blob - lib/generate_contributions.py
ANNOUNCE updates.
[lyx.git] / lib / generate_contributions.py
1 #! /usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 '''
5 file generate_contributions.py
6 This file is part of LyX, the document processor.
7 Licence details can be found in the file COPYING.
8
9 author Angus Leeming
10 Full author contact details are available in file CREDITS
11
12 This script both stores and manipulates the raw data needed to
13 create CREDITS, credits.inc and blanket-permission.inc
14
15 Usage:
16
17 $ python generate_contributions.py \
18   CREDITS \
19   credits.inc \
20   blanket-permission.inc
21
22 where the arguments are the pathnames of the generated files.
23 '''
24
25 import codecs, sys, textwrap
26
27 def xml_escape(s):
28     s = s.replace("&", "&")
29     s = s.replace("<", "&lt;")
30     s = s.replace(">", "&gt;")
31     s = s.replace('"', '&quot;')
32     return s
33
34
35 class contributor:
36      def __init__(self,
37                   name,
38                   contact,
39                   licence,
40                   permission_title,
41                   archive_id,
42                   permission_date,
43                   credit):
44           self.name = name
45           self.contact = contact
46           self.licence = licence
47           self.permission_title = permission_title
48           self.archive_id = archive_id
49           self.permission_date = permission_date
50           self.credit = credit
51
52
53      def as_txt_credits(self):
54           result = [ '@b%s\n' % self.name ]
55           if len(self.contact) != 0:
56                if self.contact.find("https") != -1:
57                     result.append('@i%s\n' % self.contact)
58                else:
59                     result.append('@iE-mail: %s\n' % self.contact)
60           result.append('   %s\n' % self.credit.replace('\n', '\n   '))
61           return "".join(result)
62
63
64      def as_php_credits(self, wrapper):
65           return '''
66 $output=$output.credits_contrib("%s",
67         "%s",
68         "%s");
69 ''' % ( xml_escape(self.name),
70         xml_escape(self.contact),
71         "\n".join(wrapper.wrap(xml_escape(self.credit))) )
72
73
74      def as_php_blanket(self):
75           return '''
76 $output=$output.blanket_contrib("%s",
77         "%s",
78         "%s",
79         "%s",
80         "%s");
81 ''' % ( xml_escape(self.name),
82         xml_escape(self.contact),
83         xml_escape(self.permission_title),
84         xml_escape(self.archive_id),
85         xml_escape(self.permission_date) )
86
87
88 def error(message):
89      if message:
90           sys.stderr.write(message + '\n')
91      sys.exit(1)
92
93
94 def usage(prog_name):
95      return '''
96 Usage:
97
98 $ python generate_contributions.py \\
99   CREDITS \\
100   credits.inc \\
101   blanket-permission.inc
102
103 where the arguments are the pathnames of the generated files.
104 '''
105
106
107 def collate_incomplete(contributors):
108
109     missing_credit = []
110     missing_licence = []
111     for contributor in contributors:
112           if len(contributor.credit) == 0:
113               missing_credit.append(contributor.name)
114           if len(contributor.licence) == 0:
115               missing_licence.append(contributor.name)
116
117     return '''WARNING!
118 The following contributors do not have a CREDITS entry:
119     %s
120
121 These ones have no explicit licence statement:
122     %s
123 ''' % ( ",\n    ".join(missing_credit), ",\n    ".join(missing_licence))
124
125
126 def as_txt_credits(contributors):
127      results = []
128
129      for contributor in contributors:
130           if len(contributor.credit) != 0:
131               results.append(contributor.as_txt_credits())
132
133      results.append('''
134
135 If your name doesn't appear here although you've done something for LyX, or your entry is wrong or incomplete, just drop some e-mail to lyx@lyx.org. Thanks.
136 ''')
137
138      return "".join(results)
139
140
141 def header():
142      return '''<?php
143 // WARNING! This file is autogenerated.
144 // Any changes to it will be lost.
145 // Please modify generate_contributions.py direct.
146 '''
147
148
149 def footer():
150      return '''
151 '''
152
153 def as_php_credits(contributors, file):
154      results = []
155
156      results.append(header())
157
158      results.append('''
159
160 function credits_contrib($name, $email, $msg) {
161
162 $email = str_replace(' () ', '@', $email);
163 $email = str_replace(' ! ', '.', $email);
164
165 if (isset($email) && $email != "") {
166         if (strncasecmp($email,"https",4) == 0)
167             $output =$output. "<dt><b>[[${email} | ${name}]]</b>";
168          else
169             $output=$output. "<dt><b>[[mailto:${email} | ${name}]]</b>";
170 } else
171         $output=$output. "<dt><b>${name}</b>";
172
173 $msg = preg_replace("/\\n */", "\\n  ", ltrim($msg));
174
175 $output=$output. "
176  </dt>
177  <dd>
178   ${msg}
179  </dd>";
180  
181 return $output;
182 }
183
184 function credits_output() {
185
186 $output=$output."<p>
187      If your name doesn't appear here although you've done
188      something for LyX, or your entry is wrong or incomplete,
189      just drop an e-mail to the
190      [[mailto:lyx-devel@lists.lyx.org | lyx-devel]]
191      mailing list. Thanks.
192 </p>
193
194 <dl>";
195 ''')
196
197      wrapper = textwrap.TextWrapper(width=60, subsequent_indent="         ")
198
199      for contributor in contributors:
200           if len(contributor.credit) != 0:
201                results.append(contributor.as_php_credits(wrapper))
202
203      results.append('''
204 $output=$output."</dl>";
205
206 return $output;
207
208 }
209 ''')
210      results.append(footer())
211      return "".join(results)
212
213
214 def as_php_blanket(contributors, file):
215      results = []
216
217      results.append(header())
218
219      results.append('''
220
221 function blanket_contrib($name, $email, $msg_title, $msg_ref, $date) {
222
223 $email = str_replace(' () ', '@', $email);
224 $email = str_replace(' ! ', '.', $email);
225
226 $output=$output. "
227
228  <dt>
229   <b>[[mailto:${email} | ${name}]]</b>
230  </dt>
231  <dd>
232   See the lyx-devel mailing list message
233   &quot;";
234
235 if (isset($msg_ref) && $msg_ref != "") {
236         $msg_ref = htmlspecialchars("$msg_ref");
237         $output=$output. "[[https://marc.info/?l=lyx-devel&amp;" . ${msg_ref} . "|" . ${msg_title} . "]]";
238 } else {
239         $output=$output. "${msg_title}";
240 }
241
242 $output=$output. "&quot;
243   of $date.
244  </dd>";
245  
246 return $output;
247 }
248
249 function blanket_output() {
250
251 $output=$output."<p>
252      The following people hereby grant permission to license their
253      contributions to LyX under the
254      [[https://opensource.org/licenses/gpl-license |
255      Gnu General Public License]], version 2 or later.
256 </p>
257
258 <dl>";
259 ''')
260
261      for contributor in contributors:
262           if contributor.licence == "GPL":
263                results.append(contributor.as_php_blanket())
264
265      results.append('''
266 $output=$output."</dl>";
267
268 $output=$output."
269 <p>
270      The following people hereby grant permission to license their
271      contributions to LyX under the
272      [[https://opensource.org/licenses/Artistic-2.0 |
273      Artistic License 2]].
274 </p>
275
276 <dl>";
277 ''')
278
279      for contributor in contributors:
280           if contributor.licence == "Artistic":
281                results.append(contributor.as_php_blanket())
282
283      results.append('''
284 $output=$output."</dl>";
285
286 return $output;
287
288 }
289 ''')
290
291      results.append(footer())
292      return "".join(results)
293
294
295 def main(argv, contributors):
296      if len(argv) != 4:
297           error(usage(argv[0]))
298
299      if sys.version_info[0] < 3:
300          txt_credits_data = unicode(as_txt_credits(contributors)).encode("utf-8")
301      else:
302          txt_credits_data = str(as_txt_credits(contributors)).encode("utf-8")
303      txt_credits = open(argv[1], "wb")
304      txt_credits.write(txt_credits_data)
305
306      if sys.version_info[0] < 3:
307          php_credits_data = unicode(as_php_credits(contributors, argv[2])).encode("utf-8")
308      else:
309          php_credits_data = str(as_php_credits(contributors, argv[2])).encode("utf-8")
310      php_credits = open(argv[2], "wb")
311      php_credits.write(php_credits_data)
312
313      if sys.version_info[0] < 3:
314          php_blanket_data = unicode(as_php_blanket(contributors, argv[3])).encode("utf-8")
315      else:
316          php_blanket_data = str(as_php_blanket(contributors, argv[3])).encode("utf-8")
317      php_blanket = open(argv[3], "wb")
318      php_blanket.write(php_blanket_data)
319
320      if sys.version_info[0] < 3:
321          warning_data =  unicode(collate_incomplete(contributors) + '\n').encode("utf-8")
322      else:
323          warning_data =  str(collate_incomplete(contributors) + '\n').encode("utf-8")
324      sys.stderr.write(warning_data.decode('utf-8'))
325
326
327 # Store the raw data.
328 contributors = [
329
330      contributor(u"Ronen Abravanel",
331                  "ronena () gmail ! com",
332                  "GPL",
333                  "Re: Patch: Diagram inset",
334                  "m=128486837824718",
335                  "19 September 2010",
336                  u"Support for feyn diagrams"),
337
338      contributor(u"Maarten Afman",
339                  "info () afman ! net",
340                  "GPL",
341                  "Fwd: Re: The LyX licence",
342                  "m=110958096916679",
343                  "27 February 2005",
344                  u"Dutch translation team member"),
345
346      contributor(u"Hatim Alahmadi",
347                  "dr.hatim () hotmail ! com",
348                  "GPL",
349                  "license issue",
350                  "m=121727417724431",
351                  "28 July 2008",
352                  u"Arabic translation"),
353
354      contributor(u"Asger Alstrup",
355                  "aalstrup () laerdal ! dk",
356                  "GPL",
357                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
358                  "m=110899716913300",
359                  "21 February 2005",
360                  u"General hacking of user interface stuff and those other bits and pieces"),
361
362      contributor(u"Jesper Stemann Andersen",
363                  "jesper () sait ! dk",
364                  "GPL",
365                  "Contributions GPLed",
366                  "m=130336947315984",
367                  "21 April 2011",
368                  u"Danish translation"),
369
370      contributor(u"Pascal André",
371                  "andre () via ! ecp ! fr",
372                  "GPL",
373                  "Re: The LyX licence --- a gentle nudge",
374                  "m=111263406200012",
375                  "1 April 2005",
376                  u"External style definition files, linuxdoc sgml support and more ftp-site ftp.lyx.org"),
377
378      contributor(u"Liviu Andronic",
379                  "landronimirc () gmail ! com",
380                  "GPL",
381                  "contributions GPLed",
382                  "m=121869084720708",
383                  "14 August 2008",
384                  u"Romanian localization and support for the frletter document class"),
385
386      contributor(u"Georger Araujo",
387                  "georger_br () yahoo ! com ! br",
388                  "GPL",
389                  "pt_BR.po translation for LyX 2.1.3",
390                  "m=143058265303480",
391                  "2 May 2015",
392                  u"Brazilian Portuguese translation"),
393
394      contributor(u"João Luis Meloni Assirati",
395                  "assirati () nonada ! if ! usp ! br",
396                  "GPL",
397                  "Re: The LyX licence",
398                  "m=110918749022256",
399                  "23 February 2005",
400                  u"Added support for unix sockets and thence the 'inverse DVI' feature"),
401
402      contributor(u"Patrick Atamaniuk",
403                  "atamaniuk () frobs ! net",
404                  "GPL",
405                  "License for my contributions",
406                  "m=129594232112957",
407                  "28 January 2011",
408                  u"fix-cm module"),
409
410      contributor(u"Gioele Barabucci",
411                  "gioele () svario ! it",
412                  "GPL",
413                  "Contribution license",
414                  "m=136933235620262",
415                  "23 May 2013",
416                  u"ACM-SIGS layouts"),
417
418      contributor(u"Özgür Uğraş Baran",
419                  "ugras.baran () gmail ! com",
420                  "GPL",
421                  "Re: [patch] new InsetCommandParams",
422                  "m=116124030512963",
423                  "19 October 2006",
424                  u"New commandparams structure, Nomenclature inset"),
425
426     contributor(u"Susana Barbosa",
427                  "susana.barbosa () fc ! up ! pt",
428                  "GPL",
429                  "License",
430                  "m=118707828425316",
431                  "14 August 2007",
432                  u"Portuguese translation"),
433
434      contributor(u"Yves Bastide",
435                  "yves.bastide () irisa ! fr",
436                  "GPL",
437                  "Re: The LyX licence",
438                  "m=110959913631678",
439                  "28 February 2005",
440                  u"Bug fixes"),
441
442      contributor(u"Heinrich Bauer",
443                  "heinrich.bauer () t-mobile ! de",
444                  "GPL",
445                  "Fwd: Re: The LyX licence",
446                  "m=110910430117798",
447                  "22 February 2005",
448                  u"Fixes for dvi output original version of page selection for printing"),
449
450      contributor(u"Georg Baum",
451                  "georg.baum () post ! rwth-aachen ! de",
452                  "GPL",
453                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
454                  "m=110899912526043",
455                  "21 February 2005",
456                  u"tex2lyx improvements, bug fixes, unicode work"),
457
458      contributor(u"Hans Bausewein",
459                  "hans () comerwell ! xs4all ! nl",
460                  "GPL",
461                  "Re: The LyX licence --- a gentle nudge",
462                  "m=111262999400394",
463                  "2 April 2005",
464                  '"case insensitive" and "complete word" search'),
465
466      contributor(u"Kornel Benko",
467                  "Kornel.Benko () berlin ! de",
468                  "GPL",
469                  "The LyX licence",
470                  "m=123100818303101",
471                  "3 January 2009",
472                  u"small bugfixes, CMake build system, Slovak translation"),
473
474      contributor(u"Jacob Bishop",
475                  "bishop.jacob () gmail ! com",
476                  "GPL",
477                  "Contributions...APA 6 Layout",
478                  "m=135654106502977",
479                  "26 December 2012",
480                  u"APA 6 Layout"),
481
482      contributor(u"Punyashloka Biswal",
483                  "punya.biswal () gmail ! com",
484                  "GPL",
485                  "Re: Patch for ticket #6848",
486                  "m=128298296923913",
487                  "28 August 2010",
488                  u"Bug fixes"),
489
490      contributor(u"Graham Biswell",
491                  "graham () gbiswell ! com",
492                  "GPL",
493                  "Re: The LyX licence",
494                  "m=111269177728853",
495                  "5 April 2005",
496                  u"Small bugfixes that were very hard to find"),
497
498      contributor(u"Lars Gullik Bjønnes",
499                  "larsbj () gullik ! net",
500                  "GPL",
501                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
502                  "m=110907078027047",
503                  "22 February 2005",
504                  u"Improvements to user interface (menus and keyhandling) including a configurable toolbar and a few other (not so) minor things, like rewriting most of the LyX kernel. Also previous source maintainer."),
505
506      contributor(u"Alfredo Braunstein",
507                  "abraunst () lyx ! org",
508                  "GPL",
509                  "Re: The LyX licence",
510                  "m=110927069513172",
511                  "24 February 2005",
512                  u"A (pseudo) threaded graphics loader queue, lots of fixes, etc."),
513
514      contributor(u"Martin A. Brown",
515                  "martin () linux-ip ! net",
516                  "GPL",
517                  "Re: public identifier for DocBook XML export",
518                  "m=148391461928571",
519                  "8 January 2017",
520                  u"Docbook fixes"),
521
522      contributor(u"Christian Buescher",
523                  "christian.buescher () uni-bielefeld ! de",
524                  "",
525                  "",
526                  "",
527                  "",
528                  u"User-definable keys, lyxserver and more"),
529
530      contributor(u"Johnathan Burchill",
531                  "jkerrb () users ! sourceforge ! net",
532                  "GPL",
533                  "Re: The LyX licence",
534                  "m=110908472818670",
535                  "22 February 2005",
536                  u"Ported John Levon's original 'change tracking' code to later versions of LyX. Numerous bug fixes thereof."),
537
538      contributor(u"Francesc Burrull i Mestres",
539                  "fburrull () mat ! upc ! es",
540                  "",
541                  "",
542                  "",
543                  "",
544                  u"Catalan translation"),
545
546      contributor(u"Sergiu Carpov",
547                  "ssmiler () gmail ! com",
548                  "GPL",
549                  "Re: Bug #5522",
550                  "m=124721248310586",
551                  "10 July 2009",
552                  u"Bug fixes"),
553
554      contributor(u"Humberto Nicolás Castejón",
555                  "beconico () gmail ! com",
556                  "GPL",
557                  "Re: The LyX licence",
558                  "m=111833854105023",
559                  "9 June 2005",
560                  u"Spanish translation of the Windows installer"),
561
562      contributor(u"Matěj Cepl",
563                  "matej () ceplovi ! cz",
564                  "GPL",
565                  "Re: The LyX licence",
566                  "m=110913090232039",
567                  "22 February 2005",
568                  u"Improvements to the czech keymaps"),
569
570      contributor(u"Albert Chin",
571                  "lyx-devel () mlists ! thewrittenword ! com",
572                  "GPL",
573                  "Re: The LyX licence --- a gentle nudge",
574                  "m=111220294831831",
575                  "30 March 2005",
576                  u"Bug fixes"),
577
578      contributor(u"Jean-Pierre Chrétien",
579                  "jeanpierre.chretien () free ! fr",
580                  "GPL",
581                  "Re: The LyX licence",
582                  "m=111842518713710",
583                  "10 June 2005",
584                  u"French translations"),
585
586      contributor(u"Claudio Coco",
587                  "lacocio () libero ! it",
588                  "GPL",
589                  "Agreement to GNU General Public licence",
590                  "m=113749629514591",
591                  "17 January 2006",
592                  u"Italian translation"),
593
594      contributor(u"Yuri Chornoivan",
595                  "yurchor () ukr ! net",
596                  "GPL",
597                  "Permission grant",
598                  "m=121681339315810",
599                  "23 July 2008",
600                  u"Ukrainian translation"),
601
602      contributor(u"Tommaso Cucinotta",
603                  "cucinotta () sssup !it",
604                  "GPL",
605                  "Re: View Menu proposal",
606                  "m=119030065212621",
607                  "20 Sep 2007",
608                  u"Advanced search feature"),
609
610      contributor(u"Matthias Kalle Dalheimer",
611                  "kalle () kdab ! net",
612                  "GPL",
613                  "Re: The LyX licence",
614                  "m=110908857130107",
615                  "22 February 2005",
616                  u"Qt2 port"),
617
618      contributor(u"Ulysse Danglis",
619                  "o2d () freemail ! gr",
620                  "GPL",
621                  "License of el.po",
622                  "m=126738357204586",
623                  "28 February 2010",
624                  u"Greek translations"),
625
626      contributor(u"Ewan Davies",
627                  "ewan.davies () googlemail ! com",
628                  "GPL",
629                  "Re: Starting Development",
630                  "m=124248720628359",
631                  "17 May 2009",
632                  u"doxygen to LFUNs.lyx conversion"),
633
634      contributor(u"Jack Dessert",
635                  "jackdesert556 () gmail ! com",
636                  "GPL",
637                  "License",
638                  "m=126994985831115",
639                  "30 March 2010",
640                  u"Patches for configure.py"),
641
642      contributor(u"Min Ding",
643                  "u5032331 () uds ! anu ! edu ! au",
644                  "GPL",
645                  "Accept GUN GPL",
646                  "m=139864105011133",
647                  "27 April 2014",
648                  u"Chinese (simplified) translations"),
649
650      contributor(u"Alexander Dunlap",
651                  "alexander.dunlap () gmail ! com",
652                  "GPL",
653                  "licensing statement",
654                  "m=151914230920804",
655                  "20 February 2018",
656                  u"Improvement to recent files support"),
657
658      contributor(u"Anders Ekberg",
659                  "anek () chalmers ! se",
660                  "GPL",
661                  "License agreement",
662                  "m=113725822602516",
663                  "14 January 2006",
664                  u"Improvements to the Swedish translation of the Windows Installer"),
665
666      contributor(u"Martin Engbers",
667                  "martin.engbers () gmx ! de",
668                  "GPL",
669                  "Re: [patch] Icon replacement",
670                  "m=123877725311464",
671                  "Apr 3 2009",
672                  u"icon loading tweaks"),
673
674      contributor(u"Matthias Ettrich",
675                  "ettrich () trolltech ! com",
676                  "GPL",
677                  "Fwd: Re: The LyX licence",
678                  "m=110959638810040",
679                  "28 February 2005",
680                  u"Started the project, implemented the early versions, various improvements including undo/redo, tables, and much, much more"),
681
682      contributor(u"Baruch Even",
683                  "baruch () ev-en ! org",
684                  "GPL",
685                  "Re: The LyX licence",
686                  "m=110936007609786",
687                  "25 February 2005",
688                  u"New graphics handling scheme and more"),
689
690      contributor(u"Dov Feldstern",
691                  "dfeldstern () fastimap ! com",
692                  "GPL",
693                  "Re: Farsi support re-submission plus a little more",
694                  "m=118064913824836",
695                  "31 May 2007",
696                  u"RTL/BiDi-related fixes"),
697
698      contributor(u"Michał Fita",
699                  "michal ! fita () gmail ! com",
700                  "GPL",
701                  "Statement for Polish translation",
702                  "m=121615623122376",
703                  "15 July 2008",
704                  u"Polish translation"),
705
706      contributor(u"Ronald Florence",
707                  "ron () 18james ! com",
708                  "GPL",
709                  "Re: The LyX licence --- a gentle nudge",
710                  "m=111262821108510",
711                  "31 March 2005",
712                  u"Maintainer of the OS X port(s)"),
713
714      contributor(u"José Ramom Flores d'as Seixas",
715                  "fa2ramon () usc ! es",
716                  "GPL",
717                  "Re: Galician translation",
718                  "m=116136920230072",
719                  "20 October 2006",
720                  u"Galician documentation and localization"),
721
722      contributor(u"John Michael Floyd",
723                  "jmf () pwd ! nsw ! gov ! au",
724                  "",
725                  "",
726                  "",
727                  "",
728                  u"Bug fix to the spellchecker"),
729
730      contributor(u"Nicola Focci",
731                  "nicola.focci () gmail ! com",
732                  "GPL",
733                  "Permission",
734                  "m=120946605432341",
735                  "29 April 2008",
736                  u"Italian translation of documentations"),
737
738      contributor(u"Enrico Forestieri",
739                  "forenr () tlc ! unipr ! it",
740                  "GPL",
741                  "Re: lyxpreview2ppm.py",
742                  "m=111894292115287",
743                  "16 June 2005",
744                  u"Italian translations, many bug fixes and features"),
745
746      contributor(u"Eitan Frachtenberg",
747                  "sky8an () gmail ! com",
748                  "GPL",
749                  "Re: [PATCH] BibTeX annotation support",
750                  "m=111130799028250",
751                  "20 March 2005",
752                  u"BibTeX annotation support"),
753
754      contributor(u"Darren Freeman",
755                  "dfreeman () ieee ! org",
756                  "GPL",
757                  "Licence",
758                  "m=118612951707590",
759                  "3 August 2007",
760                  u"Improvements to mouse wheel scrolling; many bug reports"),
761
762      contributor(u"Max Funk",
763                  "maxkhfunk () gmx ! net",
764                  "GPL",
765                  "GPL",
766                  "m=130659936521230",
767                  "28 May 2011",
768                  u"Bug fixes"),
769
770      contributor(u"Edscott Wilson Garcia",
771                  "edscott () xfce ! org",
772                  "GPL",
773                  "Re: The LyX licence --- a gentle nudge",
774                  "m=111219295119021",
775                  "30 March 2005",
776                  u"Bug fixes"),
777
778      contributor(u"Ignacio García",
779                  "ignacio.gmorales () gmail ! com",
780                  "GPL",
781                  "Re: es_EmbeddedObjects",
782                  "m=117079592919653",
783                  "06 February 2007",
784                  u"Spanish translation of documentations"),
785
786      contributor(u"Michael Gerz",
787                  "michael.gerz () teststep ! org",
788                  "GPL",
789                  "Re: The LyX licence",
790                  "m=110909251110103",
791                  "22 February 2005",
792                  u"Change tracking, German localization, bug fixes"),
793
794      contributor(u"Stefano Ghirlanda",
795                  "stefano.ghirlanda () unibo ! it",
796                  "GPL",
797                  "Re: The LyX licence",
798                  "m=110959835300777",
799                  "28 February 2005",
800                  u"Improvements to lyxserver"),
801
802      contributor(u"Shankar Giri Venkita Giri",
803                  "girivs () gmx ! com",
804                  "GPL",
805                  "Blanket permission",
806                  "m=146162343015182",
807                  "25 April 2016",
808                  u"Mingw-w64 build fixes"),
809
810      contributor(u"D. Gloger",
811                  "2wochenurlaub () gloger ! biz",
812                  "GPL",
813                  "Re: external material template: SVG -> PDF/PS with LaTeX",
814                  "m=151298047124676",
815                  "11 December 2017",
816                  u"Inkscape External Template"),
817
818      contributor(u"Hartmut Goebel",
819                  "h.goebel () crazy-compilers ! com",
820                  "GPL",
821                  "Re: The LyX licence --- a gentle nudge",
822                  "m=111225910223564",
823                  "30 March 2005",
824                  u"Improvements to Koma-Script classes"),
825
826      contributor(u"Riccardo Gori",
827                  "goriccardo () gmail ! com",
828                  "GPL",
829                  "Re: r35561 - lyx-devel/trunk/src/insets",
830                  "m=128626762015975",
831                  "5 Oct 2010",
832                  u"Fixing tabular code"),
833
834       contributor(u"Peter Gumm",
835                  "gumm () mathematik ! uni-marburg ! de",
836                  "GPL",
837                  "Re: xy-pic manual",
838                  "m=122469079629276",
839                  "22 October 2008",
840                  u"XY-pic manual"),
841      
842      contributor(u"İbrahim Güngör",
843                  "h.ibrahim.gungor () gmail ! com",
844                  "GPL",
845                  "Update Turkish Translation",
846                  "m=122583550732670",
847                  "4 Nov 2008",
848                  u"Turkish translation"),
849
850      contributor(u"Hartmut Haase",
851                  "hha4491 () web ! de",
852                  "GPL",
853                  "Re: The LyX licence",
854                  "m=110915427710167",
855                  "23 February 2005",
856                  u"German translation of the documentation"),
857
858      contributor(u"Helge Hafting",
859                  "helgehaf () aitel ! hist ! no",
860                  "GPL",
861                  "Re: The LyX licence",
862                  "m=110916171925288",
863                  "23 February 2005",
864                  u"Norwegian documentation and localization"),
865
866      contributor(u"Jessica Hamilton",
867                  "jessica.l.hamilton () gmail ! com",
868                  "GPL",
869                  "Contributor License",
870                  "m=143381137411598",
871                  "9 June 2015",
872                  u"Haiku OS support"),
873
874      contributor(u"Jan Niklas Hasse",
875                  "jhasse () bixense ! com",
876                  "GPL",
877                  "Re: Patch to make it possible to open empty files",
878                  "m=148163124122780",
879                  "23 December 2016",
880                  u"File opening enhancement"),
881
882      contributor(u"Richard Kimberly Heck",
883                  "rikiheck () lyx ! org",
884                  "GPL",
885                  "GPL Statement",
886                  "m=117501689204059",
887                  "27 March 2007",
888                  u"Bug fixes, layout modules, BibTeX code, XHTML export. Current stable branch maintainer."),
889
890      contributor(u"Bennett Helm",
891                  "bennett.helm () fandm ! edu",
892                  "GPL",
893                  "Re: The LyX licence",
894                  "m=110907988312372",
895                  "22 February 2005",
896                  u"Maintainer of the OSX ports, taking over from Ronald Florence"),
897
898      contributor(u"Kevin B. Hendricks",
899                  "kevin.hendricks () sympatico ! ca",
900                  "GPL",
901                  "Fwd: Re: Integration of libmythes and hunspell",
902                  "m=124190107613441",
903                  "9 May 2009",
904                  u"Author of the MyThes thesaurus library"),
905
906      contributor(u"Claus Hentschel",
907                  "claus.hentschel () mbau ! fh-hannover ! de",
908                  "",
909                  "",
910                  "",
911                  "",
912                  u"Win32 port of LyX 1.1.x"),
913
914      contributor(u"Josh Hieronymous",
915                  "josh.p.hieronymus () gmail ! com",
916                  "GPL",
917                  "licensing my contributions to LyX",
918                  "m=137426932127289",
919                  "19 July 2013",
920                  u"XHTML and ePub Improvements (GSOC Student)"),
921
922      contributor(u"Claus Hindsgaul",
923                  "claus_h () image ! dk",
924                  "GPL",
925                  "Re: The LyX licence",
926                  "m=110908607416324",
927                  "22 February 2005",
928                  u"Danish translation"),
929
930      contributor(u"Martin Hoffmann",
931                  "hoffimar () gmail ! com",
932                  "GPL",
933                  "Re: #8703: 'new shortcut' box closes if no shortcut",
934                  "m=138105799411067",
935                  "6 October 2013",
936                  u"Dialog usability fix"),
937
938      contributor(u"Winfred Huang",
939                  "tone90999 () hotmail ! com",
940                  "GPL",
941                  "License for Chinese translation",
942                  "m=153274007430136",
943                  "28 July 2018",
944                  u"Simplified Chinese Localization"),
945
946      contributor(u"John Hudson",
947                  "j.r.hudson () virginmedia ! com",
948                  "GPL",
949                  "Contributions",
950                  "m=146722333213915",
951                  "29 June 2016",
952                  u"Documentation updates"),
953
954      contributor(u"Bernard Hurley",
955                  "bernard () fong-hurley ! org ! uk",
956                  "GPL",
957                  "Re: The LyX licence --- a gentle nudge",
958                  "m=111218682804142",
959                  "30 March 2005",
960                  u"Fixes to literate programming support"),
961
962      contributor(u"Marius Ionescu",
963                  "felijohn () gmail ! com",
964                  "GPL",
965                  "permission to licence",
966                  "m=115935958330941",
967                  "27 September 2006",
968                  u"Romanian localization"),
969
970      contributor(u"Bernhard Iselborn",
971                  "bernhard.iselborn () sap ! com",
972                  "GPL",
973                  "RE: The LyX licence",
974                  "m=111268306522212",
975                  "5 April 2005",
976                  u"Some minor bug-fixes, FAQ, linuxdoc sgml support"),
977
978      contributor(u"Masanori Iwami",
979                  "masa.iwm () gmail ! com",
980                  "GPL",
981                  "Re: [patch] Addition of input method support",
982                  "m=117541512517453",
983                  "1 April 2007",
984                  u"Development of CJK language support"),
985
986      contributor(u"Michal Jaegermann",
987                  "michal () ellpspace ! math ! ualberta ! ca",
988                  "GPL",
989                  "Re: The LyX licence",
990                  "m=110909853626643",
991                  "22 February 2005",
992                  u"Fix to a very hard-to-find egcs bug that crashed LyX on alpha architecture"),
993
994      contributor(u"Harshula Jayasuriya",
995                  "harshula () gmail ! com",
996                  "GPL",
997                  "Re: Bug in export to DocBook",
998                  "m=116884249725701",
999                  "15 January 2007",
1000                  u"Fix docbook generation of nested lists"),
1001
1002      contributor(u"David L. Johnson",
1003                  "david.johnson () lehigh ! edu",
1004                  "GPL",
1005                  "GPL",
1006                  "m=110908492016593",
1007                  "22 February 2005",
1008                  u"Public relations, feedback, documentation and support"),
1009
1010      contributor(u"Robert van der Kamp",
1011                  "robnet () wxs ! nl",
1012                  "GPL",
1013                  "Re: The LyX licence",
1014                  "m=111268623330209",
1015                  "5 April 2005",
1016                  u"Various small things and code simplifying"),
1017
1018      contributor(u"Amir Karger",
1019                  "amirkarger () gmail ! com",
1020                  "GPL",
1021                  "Re: The LyX licence",
1022                  "m=110912688520245",
1023                  "23 February 2005",
1024                  u"Tutorial, reLyX: the LaTeX to LyX translator"),
1025
1026      contributor(u"Zahari Dmitrov Kassabov",
1027                  "zaharid () gmail ! com",
1028                  "GPL",
1029                  "GPL Statement",
1030                  "m=135540059615508",
1031                  "13 December 2012",
1032                  u"Bug fixes"),
1033
1034      contributor(u"Carmen Kauffmann",
1035                  "",
1036                  "",
1037                  "",
1038                  "",
1039                  "",
1040                  u"Original name that is now two characters shorter"),
1041
1042      contributor(u"KDE Artists",
1043                  "",
1044                  "",
1045                  "",
1046                  "",
1047                  "",
1048                  u"Authors of several of the icons LyX uses"),
1049
1050      contributor(u"Andreas Klostermann",
1051                  "andreas_klostermann () web ! de",
1052                  "GPL",
1053                  "blanket-permission",
1054                  "m=111054675600338",
1055                  "11 March 2005",
1056                  u"Gtk reference insertion dialog"),
1057
1058      contributor(u"Timo Kluck",
1059                  "tkluck () gmail ! com",
1060                  "GPL",
1061                  "license statement",
1062                  "m=132334049317495",
1063                  "8 December 2011",
1064                  u"Dutch translation, icon fixes"),
1065
1066      contributor(u"Kostantino",
1067                  "ciclope10 () alice ! it",
1068                  "GPL",
1069                  "Permission granted",
1070                  "m=115513400621782",
1071                  "9 August 2006",
1072                  u"Italian localization of the interface"),
1073
1074      contributor(u"Scott Kostyshak",
1075                  "skostysh () princeton ! edu",
1076                  "GPL",
1077                  "GPL Statement",
1078                  "m=133076234031944",
1079                  "3 March 2012",
1080                  u"Small UI fixes"),
1081
1082      contributor(u"Michael Koziarski",
1083                  "koziarski () gmail ! com",
1084                  "GPL",
1085                  "Re: The LyX licence",
1086                  "m=110909592017966",
1087                  "22 February 2005",
1088                  u"Gnome port"),
1089
1090      contributor(u"Peter Kremer",
1091                  "kremer () bme-tel ! ttt ! bme ! hu",
1092                  "",
1093                  "",
1094                  "",
1095                  "",
1096                  u"Hungarian translation and bind file for menu shortcuts"),
1097
1098      contributor(u'Marcus Kriele',
1099                  "mkriele () me ! com",
1100                  "GPL",
1101                  "License permission",
1102                  "m=130384781027177",
1103                  "26 April 2011",
1104                  u"Fixing various sv* layouts"),
1105
1106      contributor(u'Valeriy Kruchko',
1107                  "lerkru () gmail ! com",
1108                  "GPL",
1109                  "Re: translation in to russian about 68%",
1110                  "m=125904983806681",
1111                  "24 November 2009",
1112                  u"Russian translation of the user interface"),
1113
1114      contributor(u"Peter Kümmel",
1115                  "syntheticpp () gmx ! net",
1116                  "GPL",
1117                  "License",
1118                  "m=114968828021007",
1119                  "7 June 2006",
1120                  u"Qt4 coding, CMake build system, bug fixing, testing, clean ups, and profiling"),
1121
1122      contributor(u"Bernd Kümmerlen",
1123                  "bkuemmer () gmx ! net",
1124                  "GPL",
1125                  "Re: The LyX licence",
1126                  "m=110934318821667",
1127                  "25 February 2005",
1128                  u"Initial version of the koma-script textclasses"),
1129
1130      contributor(u"Joel Kulesza",
1131                  "jkulesza () gmail ! com>",
1132                  "GPL",
1133                  "License to Publish Work",
1134                  "m=147735429207382",
1135                  "25 October 2016",
1136                  u"User interface improvements"),
1137
1138      contributor(u"Felix Kurth",
1139                  "felix () fkurth ! de",
1140                  "GPL",
1141                  "Re: The LyX licence",
1142                  "m=110908918916109",
1143                  "22 February 2005",
1144                  u"Support for textclass g-brief2"),
1145
1146      contributor(u"Rob Lahaye",
1147                  "lahaye () snu ! ac ! kr",
1148                  "GPL",
1149                  "Re: The LyX licence",
1150                  "m=110908714131711",
1151                  "22 February 2005",
1152                  u"Xforms dialogs and GUI related code"),
1153
1154      contributor(u"Jean-Marc Lasgouttes",
1155                  "lasgouttes () lyx ! org",
1156                  "GPL",
1157                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1158                  "m=110899928510452",
1159                  "21 February 2005",
1160                  u"configure and Makefile-stuff, many bugfixes and more. Previous stable branch maintainer."),
1161
1162      contributor(u"Victor Lavrenko",
1163                  "lyx () lavrenko ! pp ! ru",
1164                  "",
1165                  "",
1166                  "",
1167                  "",
1168                  u"Russian translation"),
1169
1170      contributor(u"Angus Leeming",
1171                  "leeming () lyx ! org",
1172                  "GPL",
1173                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1174                  "m=110899671520339",
1175                  "21 February 2005",
1176                  u"GUI-I-fication of insets and more"),
1177
1178      contributor(u"Edwin Leuven",
1179                  "e.leuven () gmail ! com",
1180                  "GPL",
1181                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1182                  "m=110899657530749",
1183                  "21 February 2005",
1184                  u"Tabular and misc UI stuff"),
1185
1186      contributor(u"John Levon",
1187                  "levon () movementarian ! org",
1188                  "GPL",
1189                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1190                  "m=110899535600562",
1191                  "21 February 2005",
1192                  u"Qt2 frontend, GUII work, bugfixes"),
1193
1194      contributor(u"Ling Li",
1195                  "ling () caltech ! edu",
1196                  "GPL",
1197                  "Re: LyX 1.4cvs crash on Fedora Core 3",
1198                  "m=111204368700246",
1199                  "28 March 2005",
1200                  u"Added native support for \makebox to mathed. Several bug fixes, both to the source code and to the llncs layout file"),
1201
1202      contributor(u"LibreOffice Team",
1203                  "https://www.libreoffice.org/",
1204                  "LGPL",
1205                  "",
1206                  "",
1207                  "",
1208                  u"Libreoffice Icon Theme"),
1209
1210      contributor(u"Tomasz Łuczak",
1211                  "tlu () technodat ! com ! pl",
1212                  "GPL",
1213                  "Re: [Cvslog] lyx-devel po/: ChangeLog pl.po lib/: CREDITS",
1214                  "m=113580483406067",
1215                  "28 December 2005",
1216                  u"Polish translation and mw* layouts files"),
1217
1218      contributor(u"Hangzai Luo",
1219                  "memcache () gmail ! com",
1220                  "GPL",
1221                  "Re: [patch] tex2lyx crash when full path is given from commandline on Win32",
1222                  "m=118326161706627",
1223                  "1 July 2007",
1224                  u"Bugfixes"),
1225
1226      contributor(u"Mohamed Magdy",
1227                  "physicist2010 () gmail ! com>",
1228                  "GPL",
1229                  "A permission to use my Arabic-Translation for LyX?",
1230                  "m=126877445318267",
1231                  "16 March 2010",
1232                  u"Arabic translation"),
1233
1234      contributor(u"Jari-Matti Mäkelä",
1235                  "jmjmak () utu ! fi",
1236                  "GPL",
1237                  "Re: lyx fi translation update",
1238                  "m=142987910907596",
1239                  "24 April 2015",
1240                  u"Contribution to the Finnish Localization."),
1241
1242      contributor(u"Tetsuya Makimura",
1243                  "makimura () ims ! tsukuba.ac ! jp",
1244                  "GPL",
1245                  "Re: Support request for Japanese without CJK, again (Re: [Fwd: About Japanese edition ...)",
1246                  "m=121905769227884",
1247                  "18 August 2008",
1248                  u"Improvements to the Japanese language support."),
1249
1250      contributor(u"José Matos",
1251                  "jamatos () fc ! up ! pt",
1252                  "GPL",
1253                  "Re: The LyX licence",
1254                  "m=110907762926766",
1255                  "22 February 2005",
1256                  u"linuxdoc sgml support. Previous release manager."),
1257
1258      contributor(u"Roman Maurer",
1259                  "roman.maurer () amis ! net",
1260                  "GPL",
1261                  "Re: The LyX licence",
1262                  "m=110952616722307",
1263                  "27 February 2005",
1264                  u"Slovenian translation coordinator"),
1265
1266      contributor(u"John McCabe-Dansted",
1267                  "gmatht () gmail ! com",
1268                  "GPL",
1269                  "Re: Randomly Generated Crash Reports Useful?",
1270                  "m=124515770509946",
1271                  "15 June 2009",
1272                  u"Keys-test module, bug fixing"),
1273  
1274      contributor(u"Caolán McNamara",
1275                  "caolanm () redhat ! com",
1276                  "GPL",
1277                  "Statement for enchant integration",
1278                  "m=126389593805123",
1279                  "19 January 2010",
1280                  u"Support for the enchant spell checking library"),
1281
1282      contributor(u"Tino Meinen",
1283                  "a.t.meinen () chello ! nl",
1284                  "GPL",
1285                  "Re: Licensing your contributions to LyX",
1286                  "m=113078277722316",
1287                  "31 October 2005",
1288                  u"Dutch translation coordinator"),
1289
1290      contributor(u"Siegfried Meunier-Guttin-Cluzel",
1291                  "meunier () coria ! fr",
1292                  "GPL",
1293                  "French translations",
1294                  "m=119485816312776",
1295                  "12 November 2007",
1296                  u"French translations of the documentation"),
1297      
1298       contributor(u"Günter Milde",
1299                  "milde () users ! berlios ! de",
1300                  "GPL",
1301                  "copyleft",
1302                  "m=122398147620761",
1303                  "14 October 2008",
1304                  u"Unicode and layout file fixes"),
1305
1306       contributor(u"Dustin J. Mitchell",
1307                  "dustin () v ! igoro ! us",
1308                  "GPL",
1309                  "Fwd: Your patch for LyX",
1310                  "m=139255709609015",
1311                  "16 February 2014",
1312                  u"Fix for csv2lyx"),
1313
1314      contributor(u"Joan Montané",
1315                  "jmontane () gmail ! com",
1316                  "GPL",
1317                  "Re: LyX translation updates needed",
1318                  "m=118765575314017",
1319                  "21 August 2007",
1320                  u"Catalan translations of menus"),
1321
1322      contributor(u"Stéphane Mourey",
1323                  "stephane.mourey () impossible-exil ! info",
1324                  "GPL",
1325                  "Re: gpl",
1326                  "m=141381522413781",
1327                  "20 October 2014",
1328                  u"New lfun server-get-statistics"),
1329
1330      contributor(u"Guillaume Munch",
1331                  "gm () lyx ! org",
1332                  "GPL",
1333                  "Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)",
1334                  "m=143890980923229",
1335                  "07 August 2015",
1336                  u"Several bug fixes, mainly mathed"),
1337
1338      contributor(u"Iñaki Larrañaga Murgoitio",
1339                  "dooteo () euskalgnu ! org",
1340                  "GPL",
1341                  "Re: The LyX licence",
1342                  "m=110908606525783",
1343                  "22 February 2005",
1344                  u"Basque documentation and localization"),
1345
1346      contributor(u"Daniel Naber",
1347                  "daniel.naber () t-online ! de",
1348                  "GPL",
1349                  "Re: The LyX licence",
1350                  "m=110911176213928",
1351                  "22 February 2005",
1352                  u"Improvements to the find&replace dialog"),
1353
1354      contributor(u"Pablo De Napoli",
1355                  "pdenapo () mate ! dm ! uba ! ar",
1356                  "GPL",
1357                  "Re: The LyX licence",
1358                  "m=110908904400120",
1359                  "22 February 2005",
1360                  u"Math panel dialogs"),
1361
1362      contributor(u"Dirk Niggemann",
1363                  "dabn100 () cam ! ac ! uk",
1364                  "",
1365                  "",
1366                  "",
1367                  "",
1368                  u"config. handling enhancements, bugfixes, printer enhancements path mingling"),
1369
1370      contributor(u"Jens Nöckel",
1371                  "noeckel () uoregon !edu",
1372                  "GPL",
1373                  "GPL statement",
1374                  "m=128485749516885",
1375                  "19 September 2010",
1376                  u"Mac OS X enhancements"),
1377
1378      contributor(u"Rob Oakes",
1379                  "lyx-devel () oak-tree ! us>",
1380                  "GPL",
1381                  "Outline Contributions",
1382                  "m=124615188102843",
1383                  "27 June 2009",
1384                  u"Improvements to the outliner."),
1385
1386      contributor(u"Oxygen Team",
1387                  "https://techbase.kde.org/Projects/Oxygen",
1388                  "LGPL",
1389                  "",
1390                  "",
1391                  "",
1392                  u"Oxygen Icon Theme"),
1393
1394      contributor(u"Carl Ollivier-Gooch",
1395                  "cfog () mech ! ubc ! ca",
1396                  "GPL",
1397                  "Re: The LyX licence --- a gentle nudge",
1398                  "m=111220662413921",
1399                  "30 March 2005",
1400                  u"Support for two-column figure (figure*) and table (table*) environments.  Fixed minibuffer entry of floats."),
1401
1402      contributor(u"Gilad Orr",
1403                  "giladorr () gmail ! com",
1404                  "GPL",
1405                  "Internationalization-Hebrew",
1406                  "m=138314500901798",
1407                  "28 October 2013",
1408                  u"Hebrew translation."),
1409
1410      contributor(u'Panayotis "PAP" Papasotiriou',
1411                  "papasot () upatras ! gr",
1412                  "GPL",
1413                  "Re: The LyX licence",
1414                  "m=110933552929119",
1415                  "25 February 2005",
1416                  u"Support for kluwer and ijmpd document classes"),
1417
1418      contributor(u'Andrey V. Panov',
1419                  "panov () canopus ! iacp ! dvo ! ru",
1420                  "GPL",
1421                  "Re: Russian translation for LyX",
1422                  "m=119853644302866",
1423                  "24 December 2007",
1424                  u"Russian translation of the user interface"),
1425
1426      contributor(u'Dal Ho Park',
1427                  "airdalho () gmail ! com",
1428                  "GPL",
1429                  "splash.lyx translation (Korean)",
1430                  "m=139436383128181",
1431                  "9 March 2014",
1432                  u"Korean translation"),
1433
1434      contributor(u'Andrew Parsloe',
1435                  "aparsloe () clear ! net ! nz",
1436                  "GPL",
1437                  "GPL declaration",
1438                  "m=147941540519608",
1439                  "17 November 2016",
1440                  u"Module updates"),
1441
1442      contributor(u'Bo Peng',
1443                  "ben.bob () gmail ! com",
1444                  "GPL",
1445                  "Re: Python version of configure script (preview version)",
1446                  "m=112681895510418",
1447                  "15 September 2005",
1448                  u"Conversion of all shell scripts to Python, shortcuts dialog, session, view-source, auto-view, embedding features and scons build system."),
1449
1450      contributor(u'John Perry',
1451                  "john.perry () usm ! edu",
1452                  "GPL",
1453                  "Contributions",
1454                  "m=128874016511551",
1455                  "2 November 2010",
1456                  u"Named theorems module."),
1457
1458      contributor(u"Joacim Persson",
1459                  "sp2joap1 () ida ! his ! se",
1460                  "",
1461                  "",
1462                  "",
1463                  "",
1464                  u"po-file for Swedish, a tool for picking shortcuts, bug reports and hacking atrandom"),
1465
1466      contributor(u"Zvezdan Petkovic",
1467                  "zpetkovic () acm ! org",
1468                  "GPL",
1469                  "Re: The LyX licence",
1470                  "m=111276877900892",
1471                  "6 April 2005",
1472                  u"Better support for serbian and serbocroatian"),
1473
1474      contributor(u"Prannoy Pilligundla",
1475                  "prannoy.bits () gmail ! com",
1476                  "GPL",
1477                  "Contribution license",
1478                  "m=139332446711707",
1479                  "25 February 2014",
1480                  u"Full screen statusbar toggling"),
1481
1482      contributor(u"Geoffroy Piroux",
1483                  "piroux () fyma ! ucl ! ac ! be",
1484                  "",
1485                  "",
1486                  "",
1487                  "",
1488                  u"Mathematica backend for mathed"),
1489
1490      contributor(u"Benjamin Piwowarski",
1491                  "benjamin ! piwowarski () lip6 ! fr",
1492                  "GPL",
1493                  "GPL statement",
1494                  "m=133958334631163",
1495                  "13 June 2012",
1496                  u"AppleScript, integration with bibliography managers"),
1497
1498      contributor(u"Neoklis Polyzotis",
1499                  "alkis () soe ! ucsc ! edu",
1500                  "GPL",
1501                  "Fwd: Re: The LyX licence",
1502                  "m=111039215519777",
1503                  "9 March 2005",
1504                  u"Keymap work"),
1505
1506      contributor(u"André Pönitz",
1507                  "andre.poenitz () mathematik ! tu-chemnitz ! de",
1508                  "GPL",
1509                  "Re: The LyX licence",
1510                  "m=111143534724146",
1511                  "21 March 2005",
1512                  u"mathed rewrite to use STL file io with streams --export and --import command line options"),
1513
1514      contributor(u"Kornelia Pönitz",
1515                  "kornelia.poenitz () mathematik ! tu-chemnitz ! de",
1516                  "GPL",
1517                  "Re: The LyX licence",
1518                  "m=111121553103800",
1519                  "19 March 2005",
1520                  u"heavy mathed testing; provided siamltex document class"),
1521
1522      contributor(u"Bernhard Psaier",
1523                  "",
1524                  "",
1525                  "",
1526                  "",
1527                  "",
1528                  u"Designer of the LyX-Banner"),
1529
1530      contributor(u"Thomas Pundt",
1531                  "thomas () pundt ! de",
1532                  "GPL",
1533                  "Re: The LyX licence",
1534                  "m=111277917703326",
1535                  "6 April 2005",
1536                  u"initial configure script"),
1537
1538      contributor(u"Zheru Qiu",
1539                  "qzr () mail ! ustc ! edu ! cn",
1540                  "GPL",
1541                  "Fwd: Permission of using my translation under GPL",
1542                  "m=148702600212546",
1543                  "5 February 2017",
1544                  u"Chinese localisation"),
1545
1546      contributor(u"Allan Rae",
1547                  "rae () itee ! uq ! edu ! au",
1548                  "GPL",
1549                  "lyx-1.3.6cvs configure.in patch",
1550                  "m=110905169512662",
1551                  "21 February 2005",
1552                  u"GUI-I architect, LyX PR head, LDN, bug reports/fixes, Itemize Bullet Selection, xforms-0.81 + gcc-2.6.3 compatibility"),
1553
1554      contributor(u"Manoj Rajagopalan",
1555                  "rmanoj () umich ! edu", 
1556                  "GPL", 
1557                  "Re: patch for case-insensitive reference sorting", 
1558                  "m=123506398801004", 
1559                  "Feb 19 2009", 
1560                  u"reference dialog tweaks"),
1561
1562      contributor(u"Daniel Ramöller",
1563                  "d.lyx () web ! de", 
1564                  "GPL", 
1565                  "Permission", 
1566                  "m=147578627921242", 
1567                  "Oct 6 2016", 
1568                  u"UI improvements"),
1569
1570      contributor(u"Vincent van Ravesteijn",
1571                  "V.F.vanRavesteijn () tudelft ! nl",
1572                  "GPL",
1573                  "RE: crash lyx-1.6rc1",
1574                  "m=121786603726114",
1575                  "4 August 2008",
1576                  u"lots of fixes"),
1577
1578      contributor(u"Adrien Rebollo",
1579                  "adrien.rebollo () gmx ! fr",
1580                  "GPL",
1581                  "Re: The LyX licence",
1582                  "m=110918633227093",
1583                  "23 February 2005",
1584                  u"French translation of the docs; latin 3, 4 and 9 support"),
1585
1586      contributor(u"Garst R. Reese",
1587                  "garstr () isn ! net",
1588                  "GPL",
1589                  "blanket-permission.txt:",
1590                  "m=110911480107491",
1591                  "22 February 2005",
1592                  u"provided hollywood and broadway classes for writing screen scripts and plays"),
1593
1594      contributor(u"Bernhard Reiter",
1595                  "ockham () gmx ! net",
1596                  "GPL",
1597                  "Re: RFC: GThesaurus.C et al.",
1598                  "m=112912017013984",
1599                  "12 October 2005",
1600                  u"Gtk frontend"),
1601
1602      contributor(u"Ruurd Reitsma",
1603                  "rareitsma () yahoo ! com",
1604                  "GPL",
1605                  "Fwd: Re: The LyX licence",
1606                  "m=110959179412819",
1607                  "28 February 2005",
1608                  u"Creator of the native port of LyX to Windows"),
1609
1610      contributor(u"Bernd Rellermeyer",
1611                  "bernd.rellermeyer () arcor ! de",
1612                  "GPL",
1613                  "Re: The LyX licence",
1614                  "m=111317142419908",
1615                  "10 April 2005",
1616                  u"Support for Koma-Script family of classes"),
1617
1618      contributor(u"Michael Ressler",
1619                  "mike.ressler () alum ! mit ! edu",
1620                  "GPL",
1621                  "Re: The LyX licence",
1622                  "m=110926603925431",
1623                  "24 February 2005",
1624                  u"documentation maintainer, AASTeX support"),
1625
1626      contributor(u"Richman Reuven",
1627                  "richman.reuven () gmail ! com",
1628                  "GPL",
1629                  "gpl 2+ ok :)",
1630                  "m=130368087529359",
1631                  "24 April 2011",
1632                  u"Hebrew localisation"),
1633
1634      contributor(u"Christian Ridderström",
1635                  "christian.ridderstrom () gmail ! com",
1636                  "GPL",
1637                  "Re: The LyX licence",
1638                  "m=110910933124056",
1639                  "22 February 2005",
1640                  u"The driving force behind, and maintainer of, the LyX wiki wiki.\nSwedish translation of the Windows installer"),
1641
1642      contributor(u"Julien Rioux",
1643                  "jrioux () lyx ! org",
1644                  "GPL",
1645                  "Re: #6361: configure.py ignores packages required by user-defined modules",
1646                  "m=125986505101722",
1647                  "3 December 2009",
1648                  u"Bug fixes, lilypond and revtex support, citation modules."),
1649
1650      contributor(u"Bernhard Roider",
1651                  "bernhard.roider () sonnenkinder ! org",
1652                  "GPL",
1653                  "Re: [PATCH] immediatly display saved filename in tab",
1654                  "m=117009852211669",
1655                  "29 January 2007",
1656                  u"Various bug fixes"),
1657
1658      contributor(u"Jim Rotmalm",
1659                  "jim.rotmalm () gmail ! com",
1660                  "GPL",
1661                  "License for my contributions.",
1662                  "m=129582352017079",
1663                  "24 January 2011",
1664                  u"Swedish translation"),
1665
1666      contributor(u"Paul A. Rubin",
1667                  "rubin () msu ! edu",
1668                  "GPL",
1669                  "Re: [patch] reworked AMS classes (bugs 4087, 4223)",
1670                  "m=119072721929143",
1671                  "25 September 2007",
1672                  u"Major rework of the AMS classes"),
1673
1674      contributor(u"Dima Ruinskiy",
1675                  "dima.ruinskiy () outlook ! com",
1676                  "GPL",
1677                  "Joining LyX development team",
1678                  "m=146687842921797",
1679                  "24 June 2016",
1680                  u"Reintroduction of Windows Vista support (bug 10186)"),
1681
1682      contributor(u"Guy Rutenberg",
1683                  "guyrutenberg () gmail ! com",
1684                  "GPL",
1685                  "Re: [PATCH] Strange Behaivor: xdg-open left as zombie",
1686                  "m=137365070116624",
1687                  "12 July 2013",
1688                  u"System call fixes"),
1689
1690      contributor(u"Ran Rutenberg",
1691                  "ran.rutenberg () gmail ! com",
1692                  "GPL",
1693                  "The New Hebrew Translation of the Introduction",
1694                  "m=116172457024967",
1695                  "24 October 2006",
1696                  u"Hebrew translation"),
1697
1698      contributor(u'Pavel Sanda',
1699                  "ps () ucw ! cz",
1700                  "GPL",
1701                  "Re: czech translation",
1702                  "m=115522417204086",
1703                  "10 August 2006",
1704                  u"Czech translation, added various features, lfuns docs/review. Current release manager."),
1705
1706      contributor(u"Szõke Sándor",
1707                  "alex () lyx ! hu",
1708                  "GPL",
1709                  "Contribution to LyX",
1710                  "m=113449408830523",
1711                  "13 December 2005",
1712                  u"Hungarian translation"),
1713
1714      contributor(u"Janus Sandsgaard",
1715                  "janus () janus ! dk",
1716                  "GPL",
1717                  "Re: The LyX licence",
1718                  "m=111839355328045",
1719                  "10 June 2005",
1720                  u"Danish translation of the Windows installer"),
1721
1722      contributor(u"Stefan Schimanski",
1723                  "sts () 1stein ! org",
1724                  "GPL",
1725                  "GPL statement",
1726                  "m=117541472517274",
1727                  "1 April 2007",
1728                  u"font improvements, bug fixes"),
1729      
1730      contributor(u"Horst Schirmeier",
1731                  "horst () schirmeier ! com",
1732                  "GPL",
1733                  "Re: [patch] reordering capabilities for GuiBibtex",
1734                  "m=120009631506298",
1735                  "12 January 2008",
1736                  u"small fixes"),
1737
1738      contributor(u"Hubert Schreier",
1739                  "schreier () sc ! edu",
1740                  "",
1741                  "",
1742                  "",
1743                  "",
1744                  u"spellchecker (ispell frontend); beautiful document-manager based on the simple table of contents (removed)"),
1745
1746      contributor(u"Ivan Schreter",
1747                  "schreter () kdk ! sk",
1748                  "",
1749                  "",
1750                  "",
1751                  "",
1752                  u"international support and kbmaps for slovak, czech, german, ... wysiwyg figure"),
1753
1754      contributor(u"Eulogio Serradilla Rodríguez",
1755                  "eulogio.sr () terra ! es",
1756                  "GPL",
1757                  "Re: The LyX licence",
1758                  "m=110915313018478",
1759                  "23 February 2005",
1760                  u"contribution to the spanish internationalization"),
1761
1762      contributor(u"Nickolay Shashkin",
1763                  "mecareful () gmail ! com",
1764                  "GPL",
1765                  "GPL statement",
1766                  "m=134026564400578",
1767                  "21 June 2012",
1768                  u"bugfixes"),
1769
1770      contributor(u"Miyata Shigeru",
1771                  "miyata () kusm ! kyoto-u ! ac ! jp",
1772                  "",
1773                  "",
1774                  "",
1775                  "",
1776                  u"OS/2 port"),
1777
1778      contributor(u"Alejandro Aguilar Sierra",
1779                  "asierra () servidor ! unam ! mx",
1780                  "GPL",
1781                  "Fwd: Re: The LyX licence",
1782                  "m=110918647812358",
1783                  "23 February 2005",
1784                  u"Fast parsing with lyxlex, pseudoactions, mathpanel, Math Editor, combox and more"),
1785
1786      contributor(u"Lior Silberman",
1787                  "lior () princeton ! edu",
1788                  "GPL",
1789                  "Fwd: Re: The LyX licence",
1790                  "m=110910432427450",
1791                  "22 February 2005",
1792                  u"Tweaks to various XForms dialogs. Implemented the --userdir command line option, enabling LyX to run with multiple configurations for different users. Implemented the original code to make colours for different inset properties configurable."),
1793      
1794      contributor(u"Waluyo Adi Siswanto",
1795                  "was.uthm () gmail ! com",
1796                  "GPL",
1797                  "Licence contributions",
1798                  "m=123595530114385",
1799                  "Mar 2 2009",
1800                  u"Indonesian translation"),
1801
1802      contributor(u"Yuriy Skalko",
1803                  "yuriy.skalko () gmail ! com",
1804                  "GPL",
1805                  "Re: Updated Russian translation",
1806                  "m=151306079714476",
1807                  "12 December 2017",
1808                  u"Russian translation of the user interface"),
1809      
1810      contributor(u"Giovanni Sora",
1811                  "g.sora () tiscali ! it",
1812                  "GPL",
1813                  "License ia.po",
1814                  "m=129968786830788",
1815                  "9 March 2011",
1816                  u"Interlingua translation"),
1817
1818      contributor(u"Andre Spiegel",
1819                  "spiegel () gnu ! org",
1820                  "GPL",
1821                  "Re: The LyX licence",
1822                  "m=110908534728505",
1823                  "22 February 2005",
1824                  u"vertical spaces"),
1825
1826      contributor(u"Jürgen Spitzmüller",
1827                  "juergen.sp () t-online ! de",
1828                  "GPL",
1829                  "Re: The LyX licence",
1830                  "m=110907530127164",
1831                  "22 February 2005",
1832                  u"Qt frontend, bugfixes. Former stable branch maintainer."),
1833
1834      contributor(u"John Spray",
1835                  "jcs116 () york ! ac ! uk",
1836                  "GPL",
1837                  "Re: The LyX licence",
1838                  "m=110909415400170",
1839                  "22 February 2005",
1840                  u"Gtk frontend"),
1841
1842      contributor(u"Ben Stanley",
1843                  "ben.stanley () exemail ! com ! au",
1844                  "GPL",
1845                  "Re: The LyX licence",
1846                  "m=110923981012056",
1847                  "24 February 2005",
1848                  u"fix bugs with error insets placement"),
1849
1850      contributor(u"Uwe Stöhr",
1851                  "uwestoehr () web ! de",
1852                  "GPL",
1853                  "Re: The LyX licence",
1854                  "m=111833345825278",
1855                  "9 June 2005",
1856                  u"Current documentation maintainer, Windows installer, bug fixes"),
1857
1858      contributor(u"David Suárez de Lis",
1859                  "excalibor () iname ! com",
1860                  "",
1861                  "",
1862                  "",
1863                  "",
1864                  u"maintaining es.po since v1.0.0 and other small i18n issues small fixes"),
1865
1866      contributor(u"Peter Sütterlin",
1867                  "p.suetterlin () astro ! uu ! nl",
1868                  "GPL",
1869                  "Re: The LyX licence",
1870                  "m=110915086404972",
1871                  "23 February 2005",
1872                  u"aapaper support, german documentation translation, bug reports"),
1873
1874      contributor(u"Stefan Swerk",
1875                  "stefan_lyx () swerk ! priv ! at",
1876                  "GPL",
1877                  "Contribution license",
1878                  "m=142644092217864",
1879                  "15 March 2015",
1880                  u"europasscv support"),
1881
1882      contributor(u"Kayvan Aghaiepour Sylvan",
1883                  "kayvan () sylvan ! com",
1884                  "GPL",
1885                  "Re: The LyX licence",
1886                  "m=110908748407087",
1887                  "22 February 2005",
1888                  u"noweb2lyx and reLyX integration of noweb files. added Import->Noweb and key bindings to menus"),
1889
1890      contributor(u"TaoWang (mgc)",
1891                  "mgcgogo () gmail ! com",
1892                  "GPL",
1893                  "Re: Chinese Version of Tutorial.lyx",
1894                  "m=125785021631705",
1895                  "10 November 2009",
1896                  u"translation of documentation and user interface to Simplified Chinese"),
1897
1898      contributor(u'Sergey Tereschenko',
1899                  "serg.partizan () gmail ! com",
1900                  "GPL",
1901                  "my contributions",
1902                  "m=126065880524135",
1903                  "12 December 2009",
1904                  u"Russian translation of the user interface"),
1905
1906      contributor(u"Reuben Thomas",
1907                  "rrt () sc3d ! org",
1908                  "GPL",
1909                  "Re: The LyX licence",
1910                  "m=110911018202083",
1911                  "22 February 2005",
1912                  u"ENTCS document class and lots of useful bug reports"),
1913
1914      contributor(u"Dekel Tsur",
1915                  "dtsur () cs ! ucsd ! edu",
1916                  "GPL",
1917                  "Fwd: Re: The LyX licence",
1918                  "m=110910437519054",
1919                  "22 February 2005",
1920                  u"Hebrew support, general file converter, many many bug fixes"),
1921
1922      contributor(u"Matthias Urlichs",
1923                  "smurf () smurf ! noris ! de",
1924                  "GPL",
1925                  "Re: The LyX licence",
1926                  "m=110912859312991",
1927                  "22 February 2005",
1928                  u"bug reports and small fixes"),
1929
1930      contributor(u"H. Turgut Uyar",
1931                  "uyar () ce ! itu ! edu ! tr",
1932                  "GPL",
1933                  "Re: The LyX licence",
1934                  "m=110917146423892",
1935                  "23 February 2005",
1936                  u"turkish kbmaps"),
1937
1938      contributor(u"Mostafa Vahedi",
1939                  "vahedi58 () yahoo ! com",
1940                  "GPL",
1941                  "Re: improving Arabic-like language support",
1942                  "m=117769964731842",
1943                  "27 April 2007",
1944                  u"Farsi support and translations"),
1945
1946      contributor(u"Marko Vendelin",
1947                  "markov () ioc ! ee",
1948                  "GPL",
1949                  "Re: The LyX licence",
1950                  "m=110909439912594",
1951                  "22 February 2005",
1952                  u"Gnome frontend"),
1953
1954      contributor(u"Joost Verburg",
1955                  "joostverburg () users ! sourceforge ! net",
1956                  "GPL",
1957                  "Re: New Windows Installer",
1958                  "m=114957884100403",
1959                  "6 June 2006",
1960                  u"A new and improved Windows installer"),
1961
1962      contributor(u"Martin Vermeer",
1963                  "martin.vermeer () hut ! fi",
1964                  "GPL",
1965                  "Re: The LyX licence",
1966                  "m=110907543900367",
1967                  "22 February 2005",
1968                  u"support for optional argument in sections/captions svjour/svjog, egs and llncs document classes. Lot of bug hunting (and fixing!)"),
1969
1970      contributor(u"Jürgen Vigna",
1971                  "jug () lyx ! org",
1972                  "GPL",
1973                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1974                  "m=110899839906262",
1975                  "21 February 2005",
1976                  u"complete rewrite of the tabular, text inset; fax and plain text export support; iletter and dinbrief support"),
1977
1978      contributor(u"Pauli Virtanen",
1979                  "pauli.virtanen () hut ! fi",
1980                  "GPL",
1981                  "Re: The LyX licence",
1982                  "m=110918662408397",
1983                  "23 February 2005",
1984                  u"Finnish localization of the interface"),
1985
1986      contributor(u"Ramanathan Vishnampet",
1987                  "rvishnampet () gmail ! com",
1988                  "GPL",
1989                  "Re: [Patch] -fobjc-exceptions for compiling linkback sources with g++ on Mac",
1990                  "",
1991                  "17 February 2014",
1992                  u"Support for g++ on 4.8 Mac"),
1993
1994      contributor(u"Herbert Voß",
1995                  "herbert.voss () alumni ! tu-berlin ! de",
1996                  "GPL",
1997                  "Fwd: Re: The LyX licence",
1998                  "m=110910439013234",
1999                  "22 February 2005",
2000                  u"The one who answers all questions on lyx-users mailing list and maintains www.lyx.org/help/ Big insetgraphics and bibliography cleanups"),
2001
2002      contributor(u"Andreas Vox",
2003                  "avox () arcor ! de",
2004                  "GPL",
2005                  "Re: The LyX licence",
2006                  "m=110907443424620",
2007                  "22 February 2005",
2008                  u"Bug fixes, feedback on LyX behaviour on the Mac, and improvements to DocBook export"),
2009
2010      contributor(u"venom00 (c/o J-M Lasgouttes)",
2011                  "venom00 () arcadiaclub ! com",
2012                  "GPL",
2013                  "I love GPL, what about you?",
2014                  "m=129098897014967",
2015                  "29 November 2010",
2016                  u"Bug fixing"),
2017
2018      contributor(u"Jason Waskiewicz",
2019                  "jason.waskiewicz () sendit ! nodak ! edu",
2020                  "GPL",
2021                  "[Fwd: Re: tufte-book layout for LyX]",
2022                  "m=125659179116032",
2023                  "26 October 2009",
2024                  u"Layouts for the Tufte document classes"),
2025
2026      contributor(u"John P. Weiss",
2027                  "jpweiss () frontiernet ! net",
2028                  "Artistic",
2029                  "Re: Small problem with BlanketPermission on the new site.",
2030                  "m=123238170812776",
2031                  "18 January 2009",
2032                  u"Bugreports and suggestions, slides class support, editor of the documentationproject, 6/96-9/97. Tutorial chapter 1"),
2033
2034      contributor(u"Edmar Wienskoski",
2035                  "edmar () freescale ! com",
2036                  "GPL",
2037                  "Re: The LyX licence",
2038                  "m=111280236425781",
2039                  "6 April 2005",
2040                  u"literate programming support; various bug fixes"),
2041
2042      contributor(u"Mate Wierdl",
2043                  "mw () wierdlmpc ! msci ! memphis ! edu",
2044                  "",
2045                  "",
2046                  "",
2047                  "",
2048                  u"Maintainer of the @lists.lyx.org mailing-lists"),
2049
2050      contributor(u"Serge Winitzki",
2051                  "winitzki () erebus ! phys ! cwru ! edu",
2052                  "",
2053                  "",
2054                  "",
2055                  "",
2056                  u"updates to the Scientific Word bindings"),
2057
2058      contributor(u"Stephan Witt",
2059                  "stephan.witt () beusen ! de",
2060                  "GPL",
2061                  "Re: The LyX licence",
2062                  "m=110909031824764",
2063                  "22 February 2005",
2064                  u"support for CVS revision control, native spell checker interface for Mac OS"),
2065
2066      contributor(u"Russ Woodroofe",
2067                  "paranoia () math ! cornell ! edu",
2068                  "GPL",
2069                  "Re: AMS math question environment",
2070                  "m=123091448326090",
2071                  "1 January 2009",
2072                  u"question layout environment"),
2073
2074      contributor(u"Mingyi Wu",
2075                  "mingi.eo97g () g2 ! nctu ! edu ! tw",
2076                  "GPL",
2077                  "newcomer",
2078                  "m=139389779502232",
2079                  "3 March 2014",
2080                  u"Chinese (traditional) translations"),
2081
2082      contributor(u"Roy Xia",
2083                  "royxia062 () gmail ! com",
2084                  "GPL",
2085                  "GPL Statement",
2086                  "m=139434481324689",
2087                  "9 March 2014",
2088                  u"Bugfixing"),
2089
2090      contributor(u"Yihui Xie",
2091                  "xie () yihui ! name",
2092                  "GPL",
2093                  "GPL Statement",
2094                  "m=130523685427995",
2095                  "3 June 2011",
2096                  u"Bugfixing, Chinese translation, Sweave support"),
2097
2098      contributor(u"Huang Ying",
2099                  "huangy () sh ! necas ! nec ! com ! cn",
2100                  "GPL",
2101                  "Re: The LyX licence",
2102                  "m=110956742604611",
2103                  "28 February 2005",
2104                  u"Gtk frontend"),
2105
2106      contributor(u"Koji Yokota",
2107                  "yokota () res ! otaru-uc ! ac ! jp",
2108                  "GPL",
2109                  "Re: [PATCH] po/ja.po: Japanese message file for 1.5.0 (merged from",
2110                  "m=118033214223720",
2111                  "28 May 2007",
2112                  u"Japanese translation"),
2113
2114      contributor(u"Abdelrazak Younes",
2115                  "younes.a () free ! fr",
2116                  "GPL",
2117                  "Re: [Patch] RFQ: ParagraphList Rewrite",
2118                  "m=113993670602439",
2119                  "14 February 2006",
2120                  u"Qt4 frontend, editing optimisations"),
2121
2122      contributor(u"Henner Zeller",
2123                  "henner.zeller () freiheit ! com",
2124                  "GPL",
2125                  "Re: The LyX licence",
2126                  "m=110911591218107",
2127                  "22 February 2005",
2128                  u"rotation of wysiwyg figures"),
2129
2130      contributor(u"Xiaokun Zhu",
2131                  "xiaokun () aero ! gla ! ac ! uk",
2132                  "",
2133                  "",
2134                  "",
2135                  "",
2136                  u"bug reports and small fixes") ]
2137
2138
2139 if __name__ == "__main__":
2140      main(sys.argv, contributors)
2141