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