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