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