]> git.lyx.org Git - lyx.git/blob - lib/generate_contributions.py
* es/Intro from Dan.
[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"Daniel Fernández",
760                  "d3vf4n () tutanota ! com",
761                  "GPL",
762                  "Re: Contribution License",
763                  "m=169260363732687",
764                  "21 Aug 2023",
765                  u"es/ca translations"),
766
767      contributor(u"Udi Fogiel",
768                  "udifoglle () gmail ! com",
769                  "GPL",
770                  "Re: spurious spaces around forceLTR insets",
771                  "m=168113096516846",
772                  "10 April 2023",
773                  u"RTL/BiDi-related fixes"),
774
775      contributor(u"Michał Fita",
776                  "michal ! fita () gmail ! com",
777                  "GPL",
778                  "Statement for Polish translation",
779                  "m=121615623122376",
780                  "15 July 2008",
781                  u"Polish translation"),
782
783      contributor(u"Ronald Florence",
784                  "ron () 18james ! com",
785                  "GPL",
786                  "Re: The LyX licence --- a gentle nudge",
787                  "m=111262821108510",
788                  "31 March 2005",
789                  u"Maintainer of the OS X port(s)"),
790
791      contributor(u"José Ramom Flores d'as Seixas",
792                  "fa2ramon () usc ! es",
793                  "GPL",
794                  "Re: Galician translation",
795                  "m=116136920230072",
796                  "20 October 2006",
797                  u"Galician documentation and localization"),
798
799      contributor(u"John Michael Floyd",
800                  "jmf () pwd ! nsw ! gov ! au",
801                  "",
802                  "",
803                  "",
804                  "",
805                  u"Bug fix to the spellchecker"),
806
807      contributor(u"Nicola Focci",
808                  "nicola.focci () gmail ! com",
809                  "GPL",
810                  "Permission",
811                  "m=120946605432341",
812                  "29 April 2008",
813                  u"Italian translation of documentations"),
814
815      contributor(u"Enrico Forestieri",
816                  "forenr () tlc ! unipr ! it",
817                  "GPL",
818                  "Re: lyxpreview2ppm.py",
819                  "m=111894292115287",
820                  "16 June 2005",
821                  u"Italian translations, many bug fixes and features"),
822
823      contributor(u"Gilbert J. M. Forkel",
824                  "gilbert () erlangen ! ccc ! de",
825                  "GPL",
826                  "GPL",
827                  "m=153286983821872",
828                  "29 July 2018",
829                  u"Bug fixes"),
830
831      contributor(u"Eitan Frachtenberg",
832                  "sky8an () gmail ! com",
833                  "GPL",
834                  "Re: [PATCH] BibTeX annotation support",
835                  "m=111130799028250",
836                  "20 March 2005",
837                  u"BibTeX annotation support"),
838
839      contributor(u"Darren Freeman",
840                  "dfreeman () ieee ! org",
841                  "GPL",
842                  "Licence",
843                  "m=118612951707590",
844                  "3 August 2007",
845                  u"Improvements to mouse wheel scrolling; many bug reports"),
846
847      contributor(u"Max Funk",
848                  "maxkhfunk () gmx ! net",
849                  "GPL",
850                  "GPL",
851                  "m=130659936521230",
852                  "28 May 2011",
853                  u"Bug fixes"),
854
855      contributor(u"Edscott Wilson Garcia",
856                  "edscott () xfce ! org",
857                  "GPL",
858                  "Re: The LyX licence --- a gentle nudge",
859                  "m=111219295119021",
860                  "30 March 2005",
861                  u"Bug fixes"),
862
863      contributor(u"Ignacio García",
864                  "ignacio.gmorales () gmail ! com",
865                  "GPL",
866                  "Re: es_EmbeddedObjects",
867                  "m=117079592919653",
868                  "06 February 2007",
869                  u"Spanish translation of documentations"),
870
871      contributor(u"Michael Gerz",
872                  "michael.gerz () teststep ! org",
873                  "GPL",
874                  "Re: The LyX licence",
875                  "m=110909251110103",
876                  "22 February 2005",
877                  u"Change tracking, German localization, bug fixes"),
878
879      contributor(u"Stefano Ghirlanda",
880                  "stefano.ghirlanda () unibo ! it",
881                  "GPL",
882                  "Re: The LyX licence",
883                  "m=110959835300777",
884                  "28 February 2005",
885                  u"Improvements to lyxserver"),
886
887      contributor(u"Shankar Giri Venkita Giri",
888                  "girivs () gmx ! com",
889                  "GPL",
890                  "Blanket permission",
891                  "m=146162343015182",
892                  "25 April 2016",
893                  u"Mingw-w64 build fixes"),
894
895      contributor(u"D. Gloger",
896                  "2wochenurlaub () gloger ! biz",
897                  "GPL",
898                  "Re: external material template: SVG -> PDF/PS with LaTeX",
899                  "m=151298047124676",
900                  "11 December 2017",
901                  u"Inkscape External Template"),
902
903      contributor(u"Hartmut Goebel",
904                  "h.goebel () crazy-compilers ! com",
905                  "GPL",
906                  "Re: The LyX licence --- a gentle nudge",
907                  "m=111225910223564",
908                  "30 March 2005",
909                  u"Improvements to Koma-Script classes"),
910
911      contributor(u"Riccardo Gori",
912                  "goriccardo () gmail ! com",
913                  "GPL",
914                  "Re: r35561 - lyx-devel/trunk/src/insets",
915                  "m=128626762015975",
916                  "5 Oct 2010",
917                  u"Fixing tabular code"),
918
919       contributor(u"Peter Gumm",
920                  "gumm () mathematik ! uni-marburg ! de",
921                  "GPL",
922                  "Re: xy-pic manual",
923                  "m=122469079629276",
924                  "22 October 2008",
925                  u"XY-pic manual"),
926      
927      contributor(u"İbrahim Güngör",
928                  "h.ibrahim.gungor () gmail ! com",
929                  "GPL",
930                  "Update Turkish Translation",
931                  "m=122583550732670",
932                  "4 Nov 2008",
933                  u"Turkish translation"),
934
935      contributor(u"Hartmut Haase",
936                  "hha4491 () web ! de",
937                  "GPL",
938                  "Re: The LyX licence",
939                  "m=110915427710167",
940                  "23 February 2005",
941                  u"German translation of the documentation"),
942
943      contributor(u"Helge Hafting",
944                  "helgehaf () aitel ! hist ! no",
945                  "GPL",
946                  "Re: The LyX licence",
947                  "m=110916171925288",
948                  "23 February 2005",
949                  u"Norwegian documentation and localization"),
950
951      contributor(u"Jessica Hamilton",
952                  "jessica.l.hamilton () gmail ! com",
953                  "GPL",
954                  "Contributor License",
955                  "m=143381137411598",
956                  "9 June 2015",
957                  u"Haiku OS support"),
958
959      contributor(u"Jan Niklas Hasse",
960                  "jhasse () bixense ! com",
961                  "GPL",
962                  "Re: Patch to make it possible to open empty files",
963                  "m=148163124122780",
964                  "23 December 2016",
965                  u"File opening enhancement"),
966
967      contributor(u"Richard Kimberly Heck",
968                  "rikiheck () lyx ! org",
969                  "GPL",
970                  "GPL Statement",
971                  "m=117501689204059",
972                  "27 March 2007",
973                  u"Bug fixes, layout modules, BibTeX code, XHTML export. Current stable branch maintainer."),
974
975      contributor(u"Bennett Helm",
976                  "bennett.helm () fandm ! edu",
977                  "GPL",
978                  "Re: The LyX licence",
979                  "m=110907988312372",
980                  "22 February 2005",
981                  u"Maintainer of the OSX ports, taking over from Ronald Florence"),
982
983      contributor(u"Kevin B. Hendricks",
984                  "kevin.hendricks () sympatico ! ca",
985                  "GPL",
986                  "Fwd: Re: Integration of libmythes and hunspell",
987                  "m=124190107613441",
988                  "9 May 2009",
989                  u"Author of the MyThes thesaurus library"),
990
991      contributor(u"Claus Hentschel",
992                  "claus.hentschel () mbau ! fh-hannover ! de",
993                  "",
994                  "",
995                  "",
996                  "",
997                  u"Win32 port of LyX 1.1.x"),
998
999      contributor(u"Josh Hieronymous",
1000                  "josh.p.hieronymus () gmail ! com",
1001                  "GPL",
1002                  "licensing my contributions to LyX",
1003                  "m=137426932127289",
1004                  "19 July 2013",
1005                  u"XHTML and ePub Improvements (GSOC Student)"),
1006
1007      contributor(u"Christopher Hillenbrand",
1008                  "chillenb.lists () gmail ! com",
1009                  "GPL",
1010                  "Re: Limit text width in the editor window (non-fullscreen mode)",
1011                  "m=166714427827929",
1012                  "30 October 2022",
1013                  u"User Interface Improvements"),
1014
1015      contributor(u"Claus Hindsgaul",
1016                  "claus_h () image ! dk",
1017                  "GPL",
1018                  "Re: The LyX licence",
1019                  "m=110908607416324",
1020                  "22 February 2005",
1021                  u"Danish translation"),
1022
1023      contributor(u"Martin Hoffmann",
1024                  "hoffimar () gmail ! com",
1025                  "GPL",
1026                  "Re: #8703: 'new shortcut' box closes if no shortcut",
1027                  "m=138105799411067",
1028                  "6 October 2013",
1029                  u"Dialog usability fix"),
1030
1031      contributor(u"Winfred Huang",
1032                  "tone90999 () hotmail ! com",
1033                  "GPL",
1034                  "License for Chinese translation",
1035                  "m=153274007430136",
1036                  "28 July 2018",
1037                  u"Simplified Chinese Localization"),
1038
1039      contributor(u"John Hudson",
1040                  "j.r.hudson () virginmedia ! com",
1041                  "GPL",
1042                  "Contributions",
1043                  "m=146722333213915",
1044                  "29 June 2016",
1045                  u"Documentation updates"),
1046
1047      contributor(u"Bernard Hurley",
1048                  "bernard () fong-hurley ! org ! uk",
1049                  "GPL",
1050                  "Re: The LyX licence --- a gentle nudge",
1051                  "m=111218682804142",
1052                  "30 March 2005",
1053                  u"Fixes to literate programming support"),
1054
1055      contributor(u"Marius Ionescu",
1056                  "felijohn () gmail ! com",
1057                  "GPL",
1058                  "permission to licence",
1059                  "m=115935958330941",
1060                  "27 September 2006",
1061                  u"Romanian localization"),
1062
1063      contributor(u"Bernhard Iselborn",
1064                  "bernhard.iselborn () sap ! com",
1065                  "GPL",
1066                  "RE: The LyX licence",
1067                  "m=111268306522212",
1068                  "5 April 2005",
1069                  u"Some minor bug-fixes, FAQ, linuxdoc sgml support"),
1070
1071      contributor(u"Masanori Iwami",
1072                  "masa.iwm () gmail ! com",
1073                  "GPL",
1074                  "Re: [patch] Addition of input method support",
1075                  "m=117541512517453",
1076                  "1 April 2007",
1077                  u"Development of CJK language support"),
1078
1079      contributor(u"Michal Jaegermann",
1080                  "michal () ellpspace ! math ! ualberta ! ca",
1081                  "GPL",
1082                  "Re: The LyX licence",
1083                  "m=110909853626643",
1084                  "22 February 2005",
1085                  u"Fix to a very hard-to-find egcs bug that crashed LyX on alpha architecture"),
1086
1087      contributor(u"Harshula Jayasuriya",
1088                  "harshula () gmail ! com",
1089                  "GPL",
1090                  "Re: Bug in export to DocBook",
1091                  "m=116884249725701",
1092                  "15 January 2007",
1093                  u"Fix docbook generation of nested lists"),
1094
1095      contributor(u"David L. Johnson",
1096                  "david.johnson () lehigh ! edu",
1097                  "GPL",
1098                  "GPL",
1099                  "m=110908492016593",
1100                  "22 February 2005",
1101                  u"Public relations, feedback, documentation and support"),
1102
1103      contributor(u"Joice Joseph",
1104                  "joicey () yandex ! com",
1105                  "GPL",
1106                  "Re: patch: added document language malayalam",
1107                  "m=155214496414909",
1108                  "9 March 2019",
1109                  u"Support for Malayalam"),
1110
1111      contributor(u"Robert van der Kamp",
1112                  "robnet () wxs ! nl",
1113                  "GPL",
1114                  "Re: The LyX licence",
1115                  "m=111268623330209",
1116                  "5 April 2005",
1117                  u"Various small things and code simplifying"),
1118
1119      contributor(u"Amir Karger",
1120                  "amirkarger () gmail ! com",
1121                  "GPL",
1122                  "Re: The LyX licence",
1123                  "m=110912688520245",
1124                  "23 February 2005",
1125                  u"Tutorial, reLyX: the LaTeX to LyX translator"),
1126
1127      contributor(u"Zahari Dmitrov Kassabov",
1128                  "zaharid () gmail ! com",
1129                  "GPL",
1130                  "GPL Statement",
1131                  "m=135540059615508",
1132                  "13 December 2012",
1133                  u"Bug fixes"),
1134
1135      contributor(u"Carmen Kauffmann",
1136                  "",
1137                  "",
1138                  "",
1139                  "",
1140                  "",
1141                  u"Original name that is now two characters shorter"),
1142
1143      contributor(u"KDE Artists",
1144                  "",
1145                  "",
1146                  "",
1147                  "",
1148                  "",
1149                  u"Authors of several of the icons LyX uses"),
1150
1151      contributor(u"Andreas Klostermann",
1152                  "andreas_klostermann () web ! de",
1153                  "GPL",
1154                  "blanket-permission",
1155                  "m=111054675600338",
1156                  "11 March 2005",
1157                  u"Gtk reference insertion dialog"),
1158
1159      contributor(u"Timo Kluck",
1160                  "tkluck () gmail ! com",
1161                  "GPL",
1162                  "license statement",
1163                  "m=132334049317495",
1164                  "8 December 2011",
1165                  u"Dutch translation, icon fixes"),
1166
1167      contributor(u"Kostantino",
1168                  "ciclope10 () alice ! it",
1169                  "GPL",
1170                  "Permission granted",
1171                  "m=115513400621782",
1172                  "9 August 2006",
1173                  u"Italian localization of the interface"),
1174
1175      contributor(u"Scott Kostyshak",
1176                  "skostysh () princeton ! edu",
1177                  "GPL",
1178                  "GPL Statement",
1179                  "m=133076234031944",
1180                  "3 March 2012",
1181                  u"Small UI fixes"),
1182
1183      contributor(u"Michael Koziarski",
1184                  "koziarski () gmail ! com",
1185                  "GPL",
1186                  "Re: The LyX licence",
1187                  "m=110909592017966",
1188                  "22 February 2005",
1189                  u"Gnome port"),
1190
1191      contributor(u"Peter Kremer",
1192                  "kremer () bme-tel ! ttt ! bme ! hu",
1193                  "",
1194                  "",
1195                  "",
1196                  "",
1197                  u"Hungarian translation and bind file for menu shortcuts"),
1198
1199      contributor(u'Marcus Kriele',
1200                  "mkriele () me ! com",
1201                  "GPL",
1202                  "License permission",
1203                  "m=130384781027177",
1204                  "26 April 2011",
1205                  u"Fixing various sv* layouts"),
1206
1207      contributor(u'Valeriy Kruchko',
1208                  "lerkru () gmail ! com",
1209                  "GPL",
1210                  "Re: translation in to russian about 68%",
1211                  "m=125904983806681",
1212                  "24 November 2009",
1213                  u"Russian translation of the user interface"),
1214
1215      contributor(u"Peter Kümmel",
1216                  "syntheticpp () gmx ! net",
1217                  "GPL",
1218                  "License",
1219                  "m=114968828021007",
1220                  "7 June 2006",
1221                  u"Qt4 coding, CMake build system, bug fixing, testing, clean ups, and profiling"),
1222
1223      contributor(u"Bernd Kümmerlen",
1224                  "bkuemmer () gmx ! net",
1225                  "GPL",
1226                  "Re: The LyX licence",
1227                  "m=110934318821667",
1228                  "25 February 2005",
1229                  u"Initial version of the koma-script textclasses"),
1230
1231      contributor(u"Joel Kulesza",
1232                  "jkulesza () gmail ! com",
1233                  "GPL",
1234                  "License to Publish Work",
1235                  "m=147735429207382",
1236                  "25 October 2016",
1237                  u"User interface improvements"),
1238
1239      contributor(u"Felix Kurth",
1240                  "felix () fkurth ! de",
1241                  "GPL",
1242                  "Re: The LyX licence",
1243                  "m=110908918916109",
1244                  "22 February 2005",
1245                  u"Support for textclass g-brief2"),
1246
1247      contributor(u"Rob Lahaye",
1248                  "lahaye () snu ! ac ! kr",
1249                  "GPL",
1250                  "Re: The LyX licence",
1251                  "m=110908714131711",
1252                  "22 February 2005",
1253                  u"Xforms dialogs and GUI related code"),
1254
1255      contributor(u"Jean-Marc Lasgouttes",
1256                  "lasgouttes () lyx ! org",
1257                  "GPL",
1258                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1259                  "m=110899928510452",
1260                  "21 February 2005",
1261                  u"configure and Makefile-stuff, many bugfixes and more. Previous stable branch maintainer."),
1262
1263      contributor(u"Victor Lavrenko",
1264                  "lyx () lavrenko ! pp ! ru",
1265                  "",
1266                  "",
1267                  "",
1268                  "",
1269                  u"Russian translation"),
1270
1271      contributor(u"Angus Leeming",
1272                  "leeming () lyx ! org",
1273                  "GPL",
1274                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1275                  "m=110899671520339",
1276                  "21 February 2005",
1277                  u"GUI-I-fication of insets and more"),
1278
1279      contributor(u"Edwin Leuven",
1280                  "e.leuven () gmail ! com",
1281                  "GPL",
1282                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1283                  "m=110899657530749",
1284                  "21 February 2005",
1285                  u"Tabular and misc UI stuff"),
1286
1287      contributor(u"John Levon",
1288                  "levon () movementarian ! org",
1289                  "GPL",
1290                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
1291                  "m=110899535600562",
1292                  "21 February 2005",
1293                  u"Qt2 frontend, GUII work, bugfixes"),
1294
1295      contributor(u"Ling Li",
1296                  "ling () caltech ! edu",
1297                  "GPL",
1298                  "Re: LyX 1.4cvs crash on Fedora Core 3",
1299                  "m=111204368700246",
1300                  "28 March 2005",
1301                  u"Added native support for \\makebox to mathed. Several bug fixes, both to the source code and to the llncs layout file"),
1302
1303      contributor(u"LibreOffice Team",
1304                  "https://www.libreoffice.org/",
1305                  "LGPL",
1306                  "",
1307                  "",
1308                  "",
1309                  u"Libreoffice Icon Theme"),
1310
1311      contributor(u"Tomasz Łuczak",
1312                  "tlu () technodat ! com ! pl",
1313                  "GPL",
1314                  "Re: [Cvslog] lyx-devel po/: ChangeLog pl.po lib/: CREDITS",
1315                  "m=113580483406067",
1316                  "28 December 2005",
1317                  u"Polish translation and mw* layouts files"),
1318
1319      contributor(u"Hangzai Luo",
1320                  "memcache () gmail ! com",
1321                  "GPL",
1322                  "Re: [patch] tex2lyx crash when full path is given from commandline on Win32",
1323                  "m=118326161706627",
1324                  "1 July 2007",
1325                  u"Bugfixes"),
1326
1327      contributor(u"Mohamed Magdy",
1328                  "physicist2010 () gmail ! com",
1329                  "GPL",
1330                  "A permission to use my Arabic-Translation for LyX?",
1331                  "m=126877445318267",
1332                  "16 March 2010",
1333                  u"Arabic translation"),
1334
1335      contributor(u"Jari-Matti Mäkelä",
1336                  "jmjmak () utu ! fi",
1337                  "GPL",
1338                  "Re: lyx fi translation update",
1339                  "m=142987910907596",
1340                  "24 April 2015",
1341                  u"Contribution to the Finnish Localization."),
1342
1343      contributor(u"Tetsuya Makimura",
1344                  "makimura () ims ! tsukuba.ac ! jp",
1345                  "GPL",
1346                  "Re: Support request for Japanese without CJK, again (Re: [Fwd: About Japanese edition ...)",
1347                  "m=121905769227884",
1348                  "18 August 2008",
1349                  u"Improvements to the Japanese language support."),
1350
1351      contributor(u"José Matos",
1352                  "jamatos () fc ! up ! pt",
1353                  "GPL",
1354                  "Re: The LyX licence",
1355                  "m=110907762926766",
1356                  "22 February 2005",
1357                  u"linuxdoc sgml support. Previous release manager."),
1358
1359      contributor(u"Roman Maurer",
1360                  "roman.maurer () amis ! net",
1361                  "GPL",
1362                  "Re: The LyX licence",
1363                  "m=110952616722307",
1364                  "27 February 2005",
1365                  u"Slovenian translation coordinator"),
1366
1367      contributor(u"John McCabe-Dansted",
1368                  "gmatht () gmail ! com",
1369                  "GPL",
1370                  "Re: Randomly Generated Crash Reports Useful?",
1371                  "m=124515770509946",
1372                  "15 June 2009",
1373                  u"Keys-test module, bug fixing"),
1374  
1375      contributor(u"Caolán McNamara",
1376                  "caolanm () redhat ! com",
1377                  "GPL",
1378                  "Statement for enchant integration",
1379                  "m=126389593805123",
1380                  "19 January 2010",
1381                  u"Support for the enchant spell checking library"),
1382
1383      contributor(u"Tino Meinen",
1384                  "a.t.meinen () chello ! nl",
1385                  "GPL",
1386                  "Re: Licensing your contributions to LyX",
1387                  "m=113078277722316",
1388                  "31 October 2005",
1389                  u"Dutch translation coordinator"),
1390
1391      contributor(u"Siegfried Meunier-Guttin-Cluzel",
1392                  "meunier () coria ! fr",
1393                  "GPL",
1394                  "French translations",
1395                  "m=119485816312776",
1396                  "12 November 2007",
1397                  u"French translations of the documentation"),
1398      
1399       contributor(u"Günter Milde",
1400                  "milde () users ! berlios ! de",
1401                  "GPL",
1402                  "copyleft",
1403                  "m=122398147620761",
1404                  "14 October 2008",
1405                  u"Unicode and layout file fixes"),
1406
1407       contributor(u"Dustin J. Mitchell",
1408                  "dustin () v ! igoro ! us",
1409                  "GPL",
1410                  "Fwd: Your patch for LyX",
1411                  "m=139255709609015",
1412                  "16 February 2014",
1413                  u"Fix for csv2lyx"),
1414
1415      contributor(u"Joan Montané",
1416                  "jmontane () gmail ! com",
1417                  "GPL",
1418                  "Re: LyX translation updates needed",
1419                  "m=118765575314017",
1420                  "21 August 2007",
1421                  u"Catalan translations of menus"),
1422
1423      contributor(u"Stéphane Mourey",
1424                  "stephane.mourey () impossible-exil ! info",
1425                  "GPL",
1426                  "Re: gpl",
1427                  "m=141381522413781",
1428                  "20 October 2014",
1429                  u"New lfun server-get-statistics"),
1430
1431      contributor(u"Guillaume Munch",
1432                  "gm () lyx ! org",
1433                  "GPL",
1434                  "Re: -std=c++11 and [PATCH] Improve the display of the source (bugs #6501,#7359)",
1435                  "m=143890980923229",
1436                  "07 August 2015",
1437                  u"Several bug fixes, mainly mathed"),
1438
1439      contributor(u"Iñaki Larrañaga Murgoitio",
1440                  "dooteo () euskalgnu ! org",
1441                  "GPL",
1442                  "Re: The LyX licence",
1443                  "m=110908606525783",
1444                  "22 February 2005",
1445                  u"Basque documentation and localization"),
1446
1447      contributor(u"Daniel Naber",
1448                  "daniel.naber () t-online ! de",
1449                  "GPL",
1450                  "Re: The LyX licence",
1451                  "m=110911176213928",
1452                  "22 February 2005",
1453                  u"Improvements to the find&replace dialog"),
1454
1455      contributor(u"Pablo De Napoli",
1456                  "pdenapo () mate ! dm ! uba ! ar",
1457                  "GPL",
1458                  "Re: The LyX licence",
1459                  "m=110908904400120",
1460                  "22 February 2005",
1461                  u"Math panel dialogs"),
1462
1463      contributor(u"Phillip Netro",
1464                  "hobbes () centurylink ! net",
1465                  "GPL",
1466                  "RE: GPL Statement",
1467                  "m=160532510203924",
1468                  "14 November 2020",
1469                  u"Review of Manuals"),
1470
1471      contributor(u"Dirk Niggemann",
1472                  "dabn100 () cam ! ac ! uk",
1473                  "",
1474                  "",
1475                  "",
1476                  "",
1477                  u"config. handling enhancements, bugfixes, printer enhancements path mingling"),
1478
1479      contributor(u"Jens Nöckel",
1480                  "noeckel () uoregon ! edu",
1481                  "GPL",
1482                  "GPL statement",
1483                  "m=128485749516885",
1484                  "19 September 2010",
1485                  u"Mac OS X enhancements"),
1486
1487      contributor(u"Rob Oakes",
1488                  "lyx-devel () oak-tree ! us",
1489                  "GPL",
1490                  "Outline Contributions",
1491                  "m=124615188102843",
1492                  "27 June 2009",
1493                  u"Improvements to the outliner."),
1494
1495      contributor(u"Oxygen Team",
1496                  "https://techbase.kde.org/Projects/Oxygen",
1497                  "LGPL",
1498                  "",
1499                  "",
1500                  "",
1501                  u"Oxygen Icon Theme"),
1502
1503      contributor(u"Carl Ollivier-Gooch",
1504                  "cfog () mech ! ubc ! ca",
1505                  "GPL",
1506                  "Re: The LyX licence --- a gentle nudge",
1507                  "m=111220662413921",
1508                  "30 March 2005",
1509                  u"Support for two-column figure (figure*) and table (table*) environments.  Fixed minibuffer entry of floats."),
1510
1511      contributor(u"Isaac Oscar Gariano",
1512                  "IsaacOscar () live ! com ! au",
1513                  "GPL",
1514                  "Re: [PATCH] Make math autocorrrect work with more than 2 chars",
1515                  "m=155874284418501",
1516                  "25 May 2019",
1517                  u"Improvements to math autocorrect"),
1518
1519      contributor(u"Gilad Orr",
1520                  "giladorr () gmail ! com",
1521                  "GPL",
1522                  "Internationalization-Hebrew",
1523                  "m=138314500901798",
1524                  "28 October 2013",
1525                  u"Hebrew translation."),
1526
1527      contributor(u'Panayotis "PAP" Papasotiriou',
1528                  "papasot () upatras ! gr",
1529                  "GPL",
1530                  "Re: The LyX licence",
1531                  "m=110933552929119",
1532                  "25 February 2005",
1533                  u"Support for kluwer and ijmpd document classes"),
1534
1535      contributor(u'Andrey V. Panov',
1536                  "panov () canopus ! iacp ! dvo ! ru",
1537                  "GPL",
1538                  "Re: Russian translation for LyX",
1539                  "m=119853644302866",
1540                  "24 December 2007",
1541                  u"Russian translation of the user interface"),
1542
1543      contributor(u'Dal Ho Park',
1544                  "airdalho () gmail ! com",
1545                  "GPL",
1546                  "splash.lyx translation (Korean)",
1547                  "m=139436383128181",
1548                  "9 March 2014",
1549                  u"Korean translation"),
1550
1551      contributor(u'Andrew Parsloe',
1552                  "aparsloe () clear ! net ! nz",
1553                  "GPL",
1554                  "GPL declaration",
1555                  "m=147941540519608",
1556                  "17 November 2016",
1557                  u"Module updates"),
1558
1559      contributor(u'Bo Peng',
1560                  "ben.bob () gmail ! com",
1561                  "GPL",
1562                  "Re: Python version of configure script (preview version)",
1563                  "m=112681895510418",
1564                  "15 September 2005",
1565                  u"Conversion of all shell scripts to Python, shortcuts dialog, session, view-source, auto-view, embedding features and scons build system."),
1566
1567      contributor(u'John Perry',
1568                  "john.perry () usm ! edu",
1569                  "GPL",
1570                  "Contributions",
1571                  "m=128874016511551",
1572                  "2 November 2010",
1573                  u"Named theorems module."),
1574
1575      contributor(u"Joacim Persson",
1576                  "sp2joap1 () ida ! his ! se",
1577                  "",
1578                  "",
1579                  "",
1580                  "",
1581                  u"po-file for Swedish, a tool for picking shortcuts, bug reports and hacking atrandom"),
1582
1583      contributor(u"Zvezdan Petkovic",
1584                  "zpetkovic () acm ! org",
1585                  "GPL",
1586                  "Re: The LyX licence",
1587                  "m=111276877900892",
1588                  "6 April 2005",
1589                  u"Better support for serbian and serbocroatian"),
1590
1591      contributor(u"Prannoy Pilligundla",
1592                  "prannoy.bits () gmail ! com",
1593                  "GPL",
1594                  "Contribution license",
1595                  "m=139332446711707",
1596                  "25 February 2014",
1597                  u"Full screen statusbar toggling"),
1598
1599      contributor(u"Geoffroy Piroux",
1600                  "piroux () fyma ! ucl ! ac ! be",
1601                  "",
1602                  "",
1603                  "",
1604                  "",
1605                  u"Mathematica backend for mathed"),
1606
1607      contributor(u"Benjamin Piwowarski",
1608                  "benjamin ! piwowarski () lip6 ! fr",
1609                  "GPL",
1610                  "GPL statement",
1611                  "m=133958334631163",
1612                  "13 June 2012",
1613                  u"AppleScript, integration with bibliography managers"),
1614
1615      contributor(u"Neoklis Polyzotis",
1616                  "alkis () soe ! ucsc ! edu",
1617                  "GPL",
1618                  "Fwd: Re: The LyX licence",
1619                  "m=111039215519777",
1620                  "9 March 2005",
1621                  u"Keymap work"),
1622
1623      contributor(u"André Pönitz",
1624                  "andre.poenitz () mathematik ! tu-chemnitz ! de",
1625                  "GPL",
1626                  "Re: The LyX licence",
1627                  "m=111143534724146",
1628                  "21 March 2005",
1629                  u"mathed rewrite to use STL file io with streams --export and --import command line options"),
1630
1631      contributor(u"Kornelia Pönitz",
1632                  "kornelia.poenitz () mathematik ! tu-chemnitz ! de",
1633                  "GPL",
1634                  "Re: The LyX licence",
1635                  "m=111121553103800",
1636                  "19 March 2005",
1637                  u"heavy mathed testing; provided siamltex document class"),
1638
1639      contributor(u"Bernhard Psaier",
1640                  "",
1641                  "",
1642                  "",
1643                  "",
1644                  "",
1645                  u"Designer of the LyX-Banner"),
1646
1647      contributor(u"Thomas Pundt",
1648                  "thomas () pundt ! de",
1649                  "GPL",
1650                  "Re: The LyX licence",
1651                  "m=111277917703326",
1652                  "6 April 2005",
1653                  u"initial configure script"),
1654
1655      contributor(u"Zheru Qiu",
1656                  "qzr () mail ! ustc ! edu ! cn",
1657                  "GPL",
1658                  "Fwd: Permission of using my translation under GPL",
1659                  "m=148702600212546",
1660                  "5 February 2017",
1661                  u"Chinese localisation"),
1662
1663      contributor(u"Allan Rae",
1664                  "rae () itee ! uq ! edu ! au",
1665                  "GPL",
1666                  "lyx-1.3.6cvs configure.in patch",
1667                  "m=110905169512662",
1668                  "21 February 2005",
1669                  u"GUI-I architect, LyX PR head, LDN, bug reports/fixes, Itemize Bullet Selection, xforms-0.81 + gcc-2.6.3 compatibility"),
1670
1671      contributor(u"Manoj Rajagopalan",
1672                  "rmanoj () umich ! edu", 
1673                  "GPL", 
1674                  "Re: patch for case-insensitive reference sorting", 
1675                  "m=123506398801004", 
1676                  "Feb 19 2009", 
1677                  u"reference dialog tweaks"),
1678
1679      contributor(u"Daniel Ramöller",
1680                  "d.lyx () web ! de", 
1681                  "GPL", 
1682                  "Permission", 
1683                  "m=147578627921242", 
1684                  "Oct 6 2016", 
1685                  u"UI improvements"),
1686
1687      contributor(u"Vincent van Ravesteijn",
1688                  "V.F.vanRavesteijn () tudelft ! nl",
1689                  "GPL",
1690                  "RE: crash lyx-1.6rc1",
1691                  "m=121786603726114",
1692                  "4 August 2008",
1693                  u"lots of fixes"),
1694
1695      contributor(u"Adrien Rebollo",
1696                  "adrien.rebollo () gmx ! fr",
1697                  "GPL",
1698                  "Re: The LyX licence",
1699                  "m=110918633227093",
1700                  "23 February 2005",
1701                  u"French translation of the docs; latin 3, 4 and 9 support"),
1702
1703      contributor(u"Garst R. Reese",
1704                  "garstr () isn ! net",
1705                  "GPL",
1706                  "blanket-permission.txt:",
1707                  "m=110911480107491",
1708                  "22 February 2005",
1709                  u"provided hollywood and broadway classes for writing screen scripts and plays"),
1710
1711      contributor(u"Bernhard Reiter",
1712                  "ockham () gmx ! net",
1713                  "GPL",
1714                  "Re: RFC: GThesaurus.C et al.",
1715                  "m=112912017013984",
1716                  "12 October 2005",
1717                  u"Gtk frontend"),
1718
1719      contributor(u"Ruurd Reitsma",
1720                  "rareitsma () yahoo ! com",
1721                  "GPL",
1722                  "Fwd: Re: The LyX licence",
1723                  "m=110959179412819",
1724                  "28 February 2005",
1725                  u"Creator of the native port of LyX to Windows"),
1726
1727      contributor(u"Bernd Rellermeyer",
1728                  "bernd.rellermeyer () arcor ! de",
1729                  "GPL",
1730                  "Re: The LyX licence",
1731                  "m=111317142419908",
1732                  "10 April 2005",
1733                  u"Support for Koma-Script family of classes"),
1734
1735      contributor(u"Michael Ressler",
1736                  "mike.ressler () alum ! mit ! edu",
1737                  "GPL",
1738                  "Re: The LyX licence",
1739                  "m=110926603925431",
1740                  "24 February 2005",
1741                  u"documentation maintainer, AASTeX support"),
1742
1743      contributor(u"Richman Reuven",
1744                  "richman.reuven () gmail ! com",
1745                  "GPL",
1746                  "gpl 2+ ok :)",
1747                  "m=130368087529359",
1748                  "24 April 2011",
1749                  u"Hebrew localisation"),
1750
1751      contributor(u"Christian Ridderström",
1752                  "christian.ridderstrom () gmail ! com",
1753                  "GPL",
1754                  "Re: The LyX licence",
1755                  "m=110910933124056",
1756                  "22 February 2005",
1757                  u"The driving force behind, and maintainer of, the LyX wiki wiki.\nSwedish translation of the Windows installer"),
1758
1759      contributor(u"Julien Rioux",
1760                  "jrioux () lyx ! org",
1761                  "GPL",
1762                  "Re: #6361: configure.py ignores packages required by user-defined modules",
1763                  "m=125986505101722",
1764                  "3 December 2009",
1765                  u"Bug fixes, lilypond and revtex support, citation modules."),
1766
1767      contributor(u"Bernhard Roider",
1768                  "bernhard.roider () sonnenkinder ! org",
1769                  "GPL",
1770                  "Re: [PATCH] immediatly display saved filename in tab",
1771                  "m=117009852211669",
1772                  "29 January 2007",
1773                  u"Various bug fixes"),
1774
1775      contributor(u"Michael Roitzsch",
1776                  "reactorcontrol () icloud ! com",
1777                  "GPL",
1778                  "Re: TeXFiles.py compatibility with Nix on macOS",
1779                  "m=156146891826580",
1780                  "25 June 2019",
1781                  u"Fixes for the Nix package manager"),
1782
1783      contributor(u"Jim Rotmalm",
1784                  "jim.rotmalm () gmail ! com",
1785                  "GPL",
1786                  "License for my contributions.",
1787                  "m=129582352017079",
1788                  "24 January 2011",
1789                  u"Swedish translation"),
1790
1791      contributor(u"Paul A. Rubin",
1792                  "rubin () msu ! edu",
1793                  "GPL",
1794                  "Re: [patch] reworked AMS classes (bugs 4087, 4223)",
1795                  "m=119072721929143",
1796                  "25 September 2007",
1797                  u"Major rework of the AMS classes"),
1798
1799      contributor(u"Dima Ruinskiy",
1800                  "dima.ruinskiy () outlook ! com",
1801                  "GPL",
1802                  "Joining LyX development team",
1803                  "m=146687842921797",
1804                  "24 June 2016",
1805                  u"Reintroduction of Windows Vista support (bug 10186)"),
1806
1807      contributor(u"Guy Rutenberg",
1808                  "guyrutenberg () gmail ! com",
1809                  "GPL",
1810                  "Re: [PATCH] Strange Behaivor: xdg-open left as zombie",
1811                  "m=137365070116624",
1812                  "12 July 2013",
1813                  u"System call fixes"),
1814
1815      contributor(u"Ran Rutenberg",
1816                  "ran.rutenberg () gmail ! com",
1817                  "GPL",
1818                  "The New Hebrew Translation of the Introduction",
1819                  "m=116172457024967",
1820                  "24 October 2006",
1821                  u"Hebrew translation"),
1822
1823      contributor(u'Pavel Sanda',
1824                  "ps () ucw ! cz",
1825                  "GPL",
1826                  "Re: czech translation",
1827                  "m=115522417204086",
1828                  "10 August 2006",
1829                  u"Czech translation, added various features, lfuns docs/review. Current release manager."),
1830
1831      contributor(u"Szõke Sándor",
1832                  "alex () lyx ! hu",
1833                  "GPL",
1834                  "Contribution to LyX",
1835                  "m=113449408830523",
1836                  "13 December 2005",
1837                  u"Hungarian translation"),
1838
1839      contributor(u"Janus Sandsgaard",
1840                  "janus () janus ! dk",
1841                  "GPL",
1842                  "Re: The LyX licence",
1843                  "m=111839355328045",
1844                  "10 June 2005",
1845                  u"Danish translation of the Windows installer"),
1846
1847      contributor(u"Stefan Schimanski",
1848                  "sts () 1stein ! org",
1849                  "GPL",
1850                  "GPL statement",
1851                  "m=117541472517274",
1852                  "1 April 2007",
1853                  u"font improvements, bug fixes"),
1854      
1855      contributor(u"Horst Schirmeier",
1856                  "horst () schirmeier ! com",
1857                  "GPL",
1858                  "Re: [patch] reordering capabilities for GuiBibtex",
1859                  "m=120009631506298",
1860                  "12 January 2008",
1861                  u"small fixes"),
1862
1863      contributor(u"Christoph Schmitz",
1864                  "chr.schmitz () web ! de",
1865                  "GPL",
1866                  "Re: German Translation of \"Additional Features\"",
1867                  "m=161899755219050",
1868                  "21 April 2021",
1869                  u"Contribution to German manuals"),
1870
1871      contributor(u"Hubert Schreier",
1872                  "schreier () sc ! edu",
1873                  "",
1874                  "",
1875                  "",
1876                  "",
1877                  u"spellchecker (ispell frontend); beautiful document-manager based on the simple table of contents (removed)"),
1878
1879      contributor(u"Ivan Schreter",
1880                  "schreter () kdk ! sk",
1881                  "",
1882                  "",
1883                  "",
1884                  "",
1885                  u"international support and kbmaps for slovak, czech, german, ... wysiwyg figure"),
1886
1887      contributor(u"Eulogio Serradilla Rodríguez",
1888                  "eulogio.sr () terra ! es",
1889                  "GPL",
1890                  "Re: The LyX licence",
1891                  "m=110915313018478",
1892                  "23 February 2005",
1893                  u"contribution to the spanish internationalization"),
1894
1895      contributor(u"Nickolay Shashkin",
1896                  "mecareful () gmail ! com",
1897                  "GPL",
1898                  "GPL statement",
1899                  "m=134026564400578",
1900                  "21 June 2012",
1901                  u"bugfixes"),
1902
1903      contributor(u"Miyata Shigeru",
1904                  "miyata () kusm ! kyoto-u ! ac ! jp",
1905                  "",
1906                  "",
1907                  "",
1908                  "",
1909                  u"OS/2 port"),
1910
1911      contributor(u"Alejandro Aguilar Sierra",
1912                  "asierra () servidor ! unam ! mx",
1913                  "GPL",
1914                  "Fwd: Re: The LyX licence",
1915                  "m=110918647812358",
1916                  "23 February 2005",
1917                  u"Fast parsing with lyxlex, pseudoactions, mathpanel, Math Editor, combox and more"),
1918
1919      contributor(u"Lior Silberman",
1920                  "lior () princeton ! edu",
1921                  "GPL",
1922                  "Fwd: Re: The LyX licence",
1923                  "m=110910432427450",
1924                  "22 February 2005",
1925                  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."),
1926      
1927      contributor(u"Waluyo Adi Siswanto",
1928                  "was.uthm () gmail ! com",
1929                  "GPL",
1930                  "Licence contributions",
1931                  "m=123595530114385",
1932                  "Mar 2 2009",
1933                  u"Indonesian translation"),
1934
1935      contributor(u"Yuriy Skalko",
1936                  "yuriy.skalko () gmail ! com",
1937                  "GPL",
1938                  "Re: Updated Russian translation",
1939                  "m=151306079714476",
1940                  "12 December 2017",
1941                  u"Russian localization and documentation, bug reports and fixes, updating of code"),
1942
1943      contributor(u"Hernán Gustavo Solari",
1944                  "hgsolari () gmail ! com",
1945                  "GPL",
1946                  "Re: Bug#1008257: lyx: bash-completion not working",
1947                  "m=164864464510820",
1948                  "30 March 2022",
1949                  u"bash-completion fixes"),
1950
1951      contributor(u"Giovanni Sora",
1952                  "g.sora () tiscali ! it",
1953                  "GPL",
1954                  "License ia.po",
1955                  "m=129968786830788",
1956                  "9 March 2011",
1957                  u"Interlingua translation"),
1958
1959      contributor(u"Andre Spiegel",
1960                  "spiegel () gnu ! org",
1961                  "GPL",
1962                  "Re: The LyX licence",
1963                  "m=110908534728505",
1964                  "22 February 2005",
1965                  u"vertical spaces"),
1966
1967      contributor(u"Jürgen Spitzmüller",
1968                  "spitz () lyx ! org",
1969                  "GPL",
1970                  "Re: The LyX licence",
1971                  "m=110907530127164",
1972                  "22 February 2005",
1973                  u"Many bugfixes and features. Former stable branch maintainer."),
1974
1975      contributor(u"John Spray",
1976                  "jcs116 () york ! ac ! uk",
1977                  "GPL",
1978                  "Re: The LyX licence",
1979                  "m=110909415400170",
1980                  "22 February 2005",
1981                  u"Gtk frontend"),
1982
1983      contributor(u"Ben Stanley",
1984                  "ben.stanley () exemail ! com ! au",
1985                  "GPL",
1986                  "Re: The LyX licence",
1987                  "m=110923981012056",
1988                  "24 February 2005",
1989                  u"fix bugs with error insets placement"),
1990
1991      contributor(u"Uwe Stöhr",
1992                  "uwestoehr () web ! de",
1993                  "GPL",
1994                  "Re: The LyX licence",
1995                  "m=111833345825278",
1996                  "9 June 2005",
1997                  u"Current documentation maintainer, Windows installer, bug fixes"),
1998
1999      contributor(u"Niko Strijbol",
2000                  "strijbol ! niko () gmail ! com",
2001                  "GPL",
2002                  "License agreement (cf. Dutch translations)",
2003                  "m=156107304318577",
2004                  "20 June 2019",
2005                  u"Dutch translation of the user interface"),
2006
2007      contributor(u"David Suárez de Lis",
2008                  "excalibor () iname ! com",
2009                  "",
2010                  "",
2011                  "",
2012                  "",
2013                  u"maintaining es.po since v1.0.0 and other small i18n issues small fixes"),
2014
2015      contributor(u"Peter Sütterlin",
2016                  "p.suetterlin () astro ! uu ! nl",
2017                  "GPL",
2018                  "Re: The LyX licence",
2019                  "m=110915086404972",
2020                  "23 February 2005",
2021                  u"aapaper support, german documentation translation, bug reports"),
2022
2023      contributor(u"Stefan Swerk",
2024                  "stefan_lyx () swerk ! priv ! at",
2025                  "GPL",
2026                  "Contribution license",
2027                  "m=142644092217864",
2028                  "15 March 2015",
2029                  u"europasscv support"),
2030
2031      contributor(u"Kayvan Aghaiepour Sylvan",
2032                  "kayvan () sylvan ! com",
2033                  "GPL",
2034                  "Re: The LyX licence",
2035                  "m=110908748407087",
2036                  "22 February 2005",
2037                  u"noweb2lyx and reLyX integration of noweb files. added Import->Noweb and key bindings to menus"),
2038
2039      contributor(u"TaoWang (mgc)",
2040                  "mgcgogo () gmail ! com",
2041                  "GPL",
2042                  "Re: Chinese Version of Tutorial.lyx",
2043                  "m=125785021631705",
2044                  "10 November 2009",
2045                  u"translation of documentation and user interface to Simplified Chinese"),
2046
2047      contributor(u'Sergey Tereschenko',
2048                  "serg.partizan () gmail ! com",
2049                  "GPL",
2050                  "my contributions",
2051                  "m=126065880524135",
2052                  "12 December 2009",
2053                  u"Russian translation of the user interface"),
2054
2055      contributor(u"Reuben Thomas",
2056                  "rrt () sc3d ! org",
2057                  "GPL",
2058                  "Re: The LyX licence",
2059                  "m=110911018202083",
2060                  "22 February 2005",
2061                  u"ENTCS document class and lots of useful bug reports"),
2062
2063      contributor(u"Dekel Tsur",
2064                  "dtsur () cs ! ucsd ! edu",
2065                  "GPL",
2066                  "Fwd: Re: The LyX licence",
2067                  "m=110910437519054",
2068                  "22 February 2005",
2069                  u"Hebrew support, general file converter, many many bug fixes"),
2070
2071      contributor(u"Matthias Urlichs",
2072                  "smurf () smurf ! noris ! de",
2073                  "GPL",
2074                  "Re: The LyX licence",
2075                  "m=110912859312991",
2076                  "22 February 2005",
2077                  u"bug reports and small fixes"),
2078
2079      contributor(u"H. Turgut Uyar",
2080                  "uyar () ce ! itu ! edu ! tr",
2081                  "GPL",
2082                  "Re: The LyX licence",
2083                  "m=110917146423892",
2084                  "23 February 2005",
2085                  u"turkish kbmaps"),
2086
2087      contributor(u"Mostafa Vahedi",
2088                  "vahedi58 () yahoo ! com",
2089                  "GPL",
2090                  "Re: improving Arabic-like language support",
2091                  "m=117769964731842",
2092                  "27 April 2007",
2093                  u"Farsi support and translations"),
2094
2095      contributor(u"Marko Vendelin",
2096                  "markov () ioc ! ee",
2097                  "GPL",
2098                  "Re: The LyX licence",
2099                  "m=110909439912594",
2100                  "22 February 2005",
2101                  u"Gnome frontend"),
2102
2103      contributor(u"Joost Verburg",
2104                  "joostverburg () users ! sourceforge ! net",
2105                  "GPL",
2106                  "Re: New Windows Installer",
2107                  "m=114957884100403",
2108                  "6 June 2006",
2109                  u"A new and improved Windows installer"),
2110
2111      contributor(u"Martin Vermeer",
2112                  "martin.vermeer () hut ! fi",
2113                  "GPL",
2114                  "Re: The LyX licence",
2115                  "m=110907543900367",
2116                  "22 February 2005",
2117                  u"support for optional argument in sections/captions svjour/svjog, egs and llncs document classes. Lot of bug hunting (and fixing!)"),
2118
2119      contributor(u"Veselin",
2120                  "vveesskkoo () gmail ! com",
2121                  "GPL",
2122                  "Re: po/bg.po update",
2123                  "m=155531922001223",
2124                  "15 April 2019",
2125                  u"Bulgarian localization"),
2126
2127      contributor(u"Jürgen Vigna",
2128                  "jug () lyx ! org",
2129                  "GPL",
2130                  "Re: Licensing of tex2lyx (and perhaps LyX itself?)",
2131                  "m=110899839906262",
2132                  "21 February 2005",
2133                  u"complete rewrite of the tabular, text inset; fax and plain text export support; iletter and dinbrief support"),
2134
2135      contributor(u"Pauli Virtanen",
2136                  "pauli.virtanen () hut ! fi",
2137                  "GPL",
2138                  "Re: The LyX licence",
2139                  "m=110918662408397",
2140                  "23 February 2005",
2141                  u"Finnish localization of the interface"),
2142
2143      contributor(u"Ramanathan Vishnampet",
2144                  "rvishnampet () gmail ! com",
2145                  "GPL",
2146                  "Re: [Patch] -fobjc-exceptions for compiling linkback sources with g++ on Mac",
2147                  "m=139265874002562",
2148                  "17 February 2014",
2149                  u"Support for g++ on 4.8 Mac"),
2150
2151      contributor(u"Patrick De Visschere",
2152                  "pdvisschere () edpnet ! be",
2153                  "GPL",
2154                  "Re: Blanket permission",
2155                  "m=157529692807608",
2156                  "2 December 2019",
2157                  u"Improvements to the CMake build scripts"),
2158
2159      contributor(u"Herbert Voß",
2160                  "herbert.voss () alumni ! tu-berlin ! de",
2161                  "GPL",
2162                  "Fwd: Re: The LyX licence",
2163                  "m=110910439013234",
2164                  "22 February 2005",
2165                  u"The one who answers all questions on lyx-users mailing list and maintains www.lyx.org/help/ Big insetgraphics and bibliography cleanups"),
2166
2167      contributor(u"Andreas Vox",
2168                  "avox () arcor ! de",
2169                  "GPL",
2170                  "Re: The LyX licence",
2171                  "m=110907443424620",
2172                  "22 February 2005",
2173                  u"Bug fixes, feedback on LyX behaviour on the Mac, and improvements to DocBook export"),
2174
2175      contributor(u"venom00 (c/o J-M Lasgouttes)",
2176                  "venom00 () arcadiaclub ! com",
2177                  "GPL",
2178                  "I love GPL, what about you?",
2179                  "m=129098897014967",
2180                  "29 November 2010",
2181                  u"Bug fixing"),
2182
2183      contributor(u"Jason Waskiewicz",
2184                  "jason.waskiewicz () sendit ! nodak ! edu",
2185                  "GPL",
2186                  "[Fwd: Re: tufte-book layout for LyX]",
2187                  "m=125659179116032",
2188                  "26 October 2009",
2189                  u"Layouts for the Tufte document classes"),
2190
2191      contributor(u"John P. Weiss",
2192                  "jpweiss () frontiernet ! net",
2193                  "Artistic",
2194                  "Re: Small problem with BlanketPermission on the new site.",
2195                  "m=123238170812776",
2196                  "18 January 2009",
2197                  u"Bugreports and suggestions, slides class support, editor of the documentationproject, 6/96-9/97. Tutorial chapter 1"),
2198
2199      contributor(u"Edmar Wienskoski",
2200                  "edmar () freescale ! com",
2201                  "GPL",
2202                  "Re: The LyX licence",
2203                  "m=111280236425781",
2204                  "6 April 2005",
2205                  u"literate programming support; various bug fixes"),
2206
2207      contributor(u"Mate Wierdl",
2208                  "mw () wierdlmpc ! msci ! memphis ! edu",
2209                  "",
2210                  "",
2211                  "",
2212                  "",
2213                  u"Maintainer of the @lists.lyx.org mailing-lists"),
2214
2215      contributor(u"Sergei Winitzki",
2216                  "winitzki () gmail ! com",
2217                  "GPL",
2218                  "Re: patch to include latest supported programming languages in listings.tex",
2219                  "m=155530602429557",
2220                  "15 April 2019",
2221                  u"updates to the Scientific Word bindings"),
2222
2223      contributor(u"Stephan Witt",
2224                  "stephan.witt () beusen ! de",
2225                  "GPL",
2226                  "Re: The LyX licence",
2227                  "m=110909031824764",
2228                  "22 February 2005",
2229                  u"support for CVS revision control, native spell checker interface for Mac OS"),
2230
2231      contributor(u"Jürgen Womser-Schütz",
2232                  "jws1954 () gmx ! de",
2233                  "GPL",
2234                  "Re: Bug #11484",
2235                  "m=154990590319314",
2236                  "11 February 2019",
2237                  u"Improvements to the Include File dialog"),
2238
2239      contributor(u"Russ Woodroofe",
2240                  "paranoia () math ! cornell ! edu",
2241                  "GPL",
2242                  "Re: AMS math question environment",
2243                  "m=123091448326090",
2244                  "1 January 2009",
2245                  u"question layout environment"),
2246
2247      contributor(u"Mingyi Wu",
2248                  "mingi.eo97g () g2 ! nctu ! edu ! tw",
2249                  "GPL",
2250                  "newcomer",
2251                  "m=139389779502232",
2252                  "3 March 2014",
2253                  u"Chinese (traditional) translations"),
2254
2255      contributor(u"Roy Xia",
2256                  "royxia062 () gmail ! com",
2257                  "GPL",
2258                  "GPL Statement",
2259                  "m=139434481324689",
2260                  "9 March 2014",
2261                  u"Bugfixing"),
2262
2263      contributor(u"Yihui Xie",
2264                  "xie () yihui ! name",
2265                  "GPL",
2266                  "GPL Statement",
2267                  "m=130523685427995",
2268                  "3 June 2011",
2269                  u"Bugfixing, Chinese translation, Sweave support"),
2270
2271      contributor(u"Huang Ying",
2272                  "huangy () sh ! necas ! nec ! com ! cn",
2273                  "GPL",
2274                  "Re: The LyX licence",
2275                  "m=110956742604611",
2276                  "28 February 2005",
2277                  u"Gtk frontend"),
2278
2279      contributor(u"Koji Yokota",
2280                  "yokota () res ! otaru-uc ! ac ! jp",
2281                  "GPL",
2282                  "Re: [PATCH] po/ja.po: Japanese message file for 1.5.0 (merged from",
2283                  "m=118033214223720",
2284                  "28 May 2007",
2285                  u"Japanese translation"),
2286
2287      contributor(u"Abdelrazak Younes",
2288                  "younes.a () free ! fr",
2289                  "GPL",
2290                  "Re: [Patch] RFQ: ParagraphList Rewrite",
2291                  "m=113993670602439",
2292                  "14 February 2006",
2293                  u"Qt4 frontend, editing optimisations"),
2294
2295      contributor(u"Henner Zeller",
2296                  "henner.zeller () freiheit ! com",
2297                  "GPL",
2298                  "Re: The LyX licence",
2299                  "m=110911591218107",
2300                  "22 February 2005",
2301                  u"rotation of wysiwyg figures"),
2302
2303      contributor(u"Xiaokun Zhu",
2304                  "xiaokun () aero ! gla ! ac ! uk",
2305                  "",
2306                  "",
2307                  "",
2308                  "",
2309                  u"bug reports and small fixes") ]
2310
2311
2312 if __name__ == "__main__":
2313      main(sys.argv, contributors)
2314