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