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