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