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